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
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-11T19:22:15.106496-05:00'
contentSize: 379590
contentUrl:
- https://api.dandiarchive.org/api/assets/2f6662a1-241e-42f4-873d-3705ec34c82f/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000804/blobs/2fd/3d4/2fd3d4ee-52d3-4afb-a437-a68961107e7b
dateModified: '2024-01-11T19:22:32.793184-05:00'
digest:
dandi:dandi-etag: b29005a597ddc0c2721e1fb70c303a42-1
dandi:sha2-256: b1fe157cfed8cfdf25607b8018cdcb1cc6157ecbaffab68332f790c3083e7250
encodingFormat: video/mp4
id: dandiasset:2f6662a1-241e-42f4-873d-3705ec34c82f
identifier: 2f6662a1-241e-42f4-873d-3705ec34c82f
path: VideoStimulusSet/exp_gratingsAdap_s3_0.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-11T19:22:32.793155-05:00'
id: urn:uuid:a32a29f0-93a0-4b29-8c3a-0703553ccc7a
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-11T19:22:32.793155-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-11T19:22:15.155496-05:00'
contentSize: 374075
contentUrl:
- https://api.dandiarchive.org/api/assets/5f50951f-ffe5-4174-aee7-3f80425560ce/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000804/blobs/5cd/7fe/5cd7fed0-a470-40eb-8334-20268fffd100
dateModified: '2024-01-11T19:22:32.993070-05:00'
digest:
dandi:dandi-etag: e529390bfdcbd0c78c4224262285a5da-1
dandi:sha2-256: a55e462ec16e2f10ddd31ae7326be65ba467aa920e99a67df7b2422e49bd20d4
encodingFormat: video/mp4
id: dandiasset:5f50951f-ffe5-4174-aee7-3f80425560ce
identifier: 5f50951f-ffe5-4174-aee7-3f80425560ce
path: VideoStimulusSet/exp_gratingsAdap_s3_1.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-11T19:22:32.993034-05:00'
id: urn:uuid:6f7a9faa-1a33-4ee2-b333-4b72142cf437
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-11T19:22:32.993034-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-11T19:22:15.176496-05:00'
contentSize: 365397
contentUrl:
- https://api.dandiarchive.org/api/assets/6657c042-09f8-4a19-8039-68ec07d75a88/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000804/blobs/ca7/c09/ca7c09b7-168e-464e-8305-557e20f0e6d5
dateModified: '2024-01-11T19:22:33.157735-05:00'
digest:
dandi:dandi-etag: 96aa258f094e469b482daec853ddc0bb-1
dandi:sha2-256: c591c4d047a9bf26c6476d8322de13125eadd21826c444fb15b7687ffd0fe5a7
encodingFormat: video/mp4
id: dandiasset:6657c042-09f8-4a19-8039-68ec07d75a88
identifier: 6657c042-09f8-4a19-8039-68ec07d75a88
path: VideoStimulusSet/exp_gratingsAdap_s3_10.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-11T19:22:33.157692-05:00'
id: urn:uuid:45d4aad1-e7ec-490f-8376-cf9e3fe130a5
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-11T19:22:33.157692-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-11T19:22:15.213496-05:00'
contentSize: 363552
contentUrl:
- https://api.dandiarchive.org/api/assets/e196d0a0-9c05-49e3-80d0-4472c13fb764/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000804/blobs/6e7/aeb/6e7aeb61-3533-4425-ba5e-843b301c7a56
dateModified: '2024-01-11T19:22:33.448088-05:00'
digest:
dandi:dandi-etag: dbe0aec9d843250901fdefe473e0e30f-1
dandi:sha2-256: b0c337bef00a067da35069c8f4b8a73b34fe123f10cf72d034b65464c8e98d80
encodingFormat: video/mp4
id: dandiasset:e196d0a0-9c05-49e3-80d0-4472c13fb764
identifier: e196d0a0-9c05-49e3-80d0-4472c13fb764
path: VideoStimulusSet/exp_gratingsAdap_s3_12.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-11T19:22:33.448057-05:00'
id: urn:uuid:693e41ea-5bf9-43d9-8db3-a47725d357cd
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-11T19:22:33.448057-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-11T19:22:15.193496-05:00'
contentSize: 360288
contentUrl:
- https://api.dandiarchive.org/api/assets/22f46440-840a-45d3-a6b3-20fef8384ca2/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000804/blobs/8de/2a6/8de2a61c-ee3f-4e35-81bd-436e711e4947
dateModified: '2024-01-11T19:22:33.392320-05:00'
digest:
dandi:dandi-etag: 1a993835b72a8994f983c0d26c21255d-1
dandi:sha2-256: 657df75587df04e982b6be8033b9cf5719e9d5732e3e91dee54de5e84ec73c31
encodingFormat: video/mp4
id: dandiasset:22f46440-840a-45d3-a6b3-20fef8384ca2
identifier: 22f46440-840a-45d3-a6b3-20fef8384ca2
path: VideoStimulusSet/exp_gratingsAdap_s3_11.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-11T19:22:33.392288-05:00'
id: urn:uuid:2eaae688-a75b-4d8f-b299-919858c14cf1
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-11T19:22:33.392288-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-11T19:22:15.225496-05:00'
contentSize: 358613
contentUrl:
- https://api.dandiarchive.org/api/assets/18247072-daed-4aa5-863b-836afa5fcfd7/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000804/blobs/b58/12f/b5812f84-c96b-4a7e-994a-6e87d1278d56
dateModified: '2024-01-11T19:22:35.988913-05:00'
digest:
dandi:dandi-etag: 4d4ec388bf016aa6bcbc43311031a3a3-1
dandi:sha2-256: 53849a6d52a1cd2d2e2b334e3207ceb18936609a22286bd9294bf1afc505a14a
encodingFormat: video/mp4
id: dandiasset:18247072-daed-4aa5-863b-836afa5fcfd7
identifier: 18247072-daed-4aa5-863b-836afa5fcfd7
path: VideoStimulusSet/exp_gratingsAdap_s3_13.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-11T19:22:35.988890-05:00'
id: urn:uuid:d880c382-4463-4a3a-8106-2430680ecbeb
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-11T19:22:35.988890-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-11T19:22:15.243496-05:00'
contentSize: 373958
contentUrl:
- https://api.dandiarchive.org/api/assets/13a138e0-6d70-4e31-bc2e-7e8b0cdcd9f4/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000804/blobs/376/fad/376fadea-0156-482d-9925-abe42e247c6f
dateModified: '2024-01-11T19:22:37.158970-05:00'
digest:
dandi:dandi-etag: 74528bd8ef35c1de6b3a502bf23ffb22-1
dandi:sha2-256: 9dcfd76022f34525131ef78e21bc3a3d8852f459a594e370e8d8ae4526875e8c
encodingFormat: video/mp4
id: dandiasset:13a138e0-6d70-4e31-bc2e-7e8b0cdcd9f4
identifier: 13a138e0-6d70-4e31-bc2e-7e8b0cdcd9f4
path: VideoStimulusSet/exp_gratingsAdap_s3_14.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-11T19:22:37.158908-05:00'
id: urn:uuid:68fcc414-97c7-4ea1-b55d-3ecff18a5807
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-11T19:22:37.158908-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-11T19:22:15.320496-05:00'
contentSize: 368020
contentUrl:
- https://api.dandiarchive.org/api/assets/8033c520-33dd-49e6-9e94-1e865110d7d1/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000804/blobs/1d0/967/1d0967e4-5d75-4b97-9055-628f14503a22
dateModified: '2024-01-11T19:22:37.572832-05:00'
digest:
dandi:dandi-etag: 914ee3ac07978085cd4881af8ee33716-1
dandi:sha2-256: c643d982697646909766133e2843778a84a1ca0bebbbaf9fc6ae342fbc8ce524
encodingFormat: video/mp4
id: dandiasset:8033c520-33dd-49e6-9e94-1e865110d7d1
identifier: 8033c520-33dd-49e6-9e94-1e865110d7d1
path: VideoStimulusSet/exp_gratingsAdap_s3_16.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-11T19:22:37.572790-05:00'
id: urn:uuid:4ed177ee-935a-4769-8511-9d7408028916
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-11T19:22:37.572790-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-11T19:22:15.300496-05:00'
contentSize: 364467
contentUrl:
- https://api.dandiarchive.org/api/assets/51835cfb-03e5-491e-89df-632fcfe7542d/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000804/blobs/325/a1f/325a1f25-1d6b-4b13-bc4b-3d75db95ecea
dateModified: '2024-01-11T19:22:37.275368-05:00'
digest:
dandi:dandi-etag: 9ba95086770023cd14179f49489c91f4-1
dandi:sha2-256: 54d82790f2d3cda6147004ea98f234815f2b032e3370d4dcf4e10b4f13deda8e
encodingFormat: video/mp4
id: dandiasset:51835cfb-03e5-491e-89df-632fcfe7542d
identifier: 51835cfb-03e5-491e-89df-632fcfe7542d
path: VideoStimulusSet/exp_gratingsAdap_s3_15.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-11T19:22:37.275336-05:00'
id: urn:uuid:c14dd64d-a82b-4d0f-99f3-f93de39415e7
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-11T19:22:37.275336-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-11T19:22:15.345496-05:00'
contentSize: 365823
contentUrl:
- https://api.dandiarchive.org/api/assets/2de5e875-4b82-4a8d-8521-38be46bb5b5a/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000804/blobs/3cc/ee0/3ccee0b5-3dfc-4b19-83bf-5e2b8be1c64c
dateModified: '2024-01-11T19:22:37.884126-05:00'
digest:
dandi:dandi-etag: 83e41c28df8d8f22ccb4d64d93824b10-1
dandi:sha2-256: 3d37692ae8243a2e85530ff94ecfaf9d3eafff088fb08ff960356239c222d449
encodingFormat: video/mp4
id: dandiasset:2de5e875-4b82-4a8d-8521-38be46bb5b5a
identifier: 2de5e875-4b82-4a8d-8521-38be46bb5b5a
path: VideoStimulusSet/exp_gratingsAdap_s3_17.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-11T19:22:37.884074-05:00'
id: urn:uuid:1418633b-95c3-460b-bc89-fc9f7ce45cbc
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-11T19:22:37.884074-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-11T19:22:15.429496-05:00'
contentSize: 372374
contentUrl:
- https://api.dandiarchive.org/api/assets/e66d5a43-30e6-4581-9675-b0fdce01ec29/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000804/blobs/7c7/033/7c703373-4041-44ee-9d32-5d866e98deb5
dateModified: '2024-01-11T19:22:39.146766-05:00'
digest:
dandi:dandi-etag: 6b9cdcf34d9ee0f7bd9459691a04e3fa-1
dandi:sha2-256: 04d59ca1053773e34915f40ba38ebe7399a976baabdf9e4ff7d4c885646103a0
encodingFormat: video/mp4
id: dandiasset:e66d5a43-30e6-4581-9675-b0fdce01ec29
identifier: e66d5a43-30e6-4581-9675-b0fdce01ec29
path: VideoStimulusSet/exp_gratingsAdap_s3_18.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-11T19:22:39.146719-05:00'
id: urn:uuid:09c7b3d0-e175-4842-b47e-3f11bbf22b81
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-11T19:22:39.146719-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-11T19:22:15.456496-05:00'
contentSize: 373233
contentUrl:
- https://api.dandiarchive.org/api/assets/9c4c9476-0e67-4a72-851d-417939172ced/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000804/blobs/0ba/29e/0ba29e65-993a-481a-882f-4f4bb6dbf3c9
dateModified: '2024-01-11T19:22:40.496772-05:00'
digest:
dandi:dandi-etag: 662472684a9c74b1f282fdac396152e2-1
dandi:sha2-256: 36ccdc2710fe1150f11377c0d692954da3ce6e923f0dd41a1791d46480e85445
encodingFormat: video/mp4
id: dandiasset:9c4c9476-0e67-4a72-851d-417939172ced
identifier: 9c4c9476-0e67-4a72-851d-417939172ced
path: VideoStimulusSet/exp_gratingsAdap_s3_19.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-11T19:22:40.496728-05:00'
id: urn:uuid:66009f34-73bb-4d36-a15a-8c40fcd2e5ab
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-11T19:22:40.496728-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-11T19:22:15.475496-05:00'
contentSize: 364337
contentUrl:
- https://api.dandiarchive.org/api/assets/d622b31a-4de8-4e44-9a9e-a091e5f70bb1/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000804/blobs/65d/9db/65d9db06-fe96-47d5-9454-5e28014c4d88
dateModified: '2024-01-11T19:22:41.617882-05:00'
digest:
dandi:dandi-etag: 976d1accdedf62ce243285eeb979e88e-1
dandi:sha2-256: 3081495778be37ff995bb934d543eed1764f5934f25e002f97e2b2dcb60a4809
encodingFormat: video/mp4
id: dandiasset:d622b31a-4de8-4e44-9a9e-a091e5f70bb1
identifier: d622b31a-4de8-4e44-9a9e-a091e5f70bb1
path: VideoStimulusSet/exp_gratingsAdap_s3_2.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-11T19:22:41.617832-05:00'
id: urn:uuid:ef797e58-078f-4f04-8aa7-fa66c2414b75
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-11T19:22:41.617832-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-11T19:22:15.517496-05:00'
contentSize: 362101
contentUrl:
- https://api.dandiarchive.org/api/assets/4f25e646-d62b-47f7-a174-b5b337960d57/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000804/blobs/57a/dbf/57adbf29-0e48-438e-87cc-e5a6e2b9e760
dateModified: '2024-01-11T19:22:42.118333-05:00'
digest:
dandi:dandi-etag: 2dbf4105abf00943bf51ca3db686ffbf-1
dandi:sha2-256: 0cbf6635d768d63b8424009e02be2de0b0f5ce51943e56f4967df598b68d9c16
encodingFormat: video/mp4
id: dandiasset:4f25e646-d62b-47f7-a174-b5b337960d57
identifier: 4f25e646-d62b-47f7-a174-b5b337960d57
path: VideoStimulusSet/exp_gratingsAdap_s3_21.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-11T19:22:42.118298-05:00'
id: urn:uuid:a7264c42-cb3b-4f24-9657-4fb243baa141
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-11T19:22:42.118298-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-11T19:22:15.503496-05:00'
contentSize: 372690
contentUrl:
- https://api.dandiarchive.org/api/assets/72a02fd8-430f-4b3f-a099-ec468fa904ea/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000804/blobs/601/4aa/6014aafc-accb-4291-a766-424a8f50e469
dateModified: '2024-01-11T19:22:41.923748-05:00'
digest:
dandi:dandi-etag: 1a0e487ca6963b562d3c211674407859-1
dandi:sha2-256: 11bdbdae3db366e7c102407f19206bd3f593040a9b7038f496386a4fb1382fd4
encodingFormat: video/mp4
id: dandiasset:72a02fd8-430f-4b3f-a099-ec468fa904ea
identifier: 72a02fd8-430f-4b3f-a099-ec468fa904ea
path: VideoStimulusSet/exp_gratingsAdap_s3_20.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-11T19:22:41.923709-05:00'
id: urn:uuid:a0b81c7a-b746-48ef-84ec-5534b102fa8f
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-11T19:22:41.923709-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-11T19:22:15.528496-05:00'
contentSize: 367931
contentUrl:
- https://api.dandiarchive.org/api/assets/7dcab5a3-a2fa-47a7-8adf-d94d46ca9fc9/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000804/blobs/8f8/a8e/8f8a8ec0-04cf-4db0-bdaa-37f32b28beb7
dateModified: '2024-01-11T19:22:43.168985-05:00'
digest:
dandi:dandi-etag: 3fd93c8d68133d2f5a7083aa144648ec-1
dandi:sha2-256: d636eee48603781443c477f308819c08d8bc3e1f7e112922eff56362082cf365
encodingFormat: video/mp4
id: dandiasset:7dcab5a3-a2fa-47a7-8adf-d94d46ca9fc9
identifier: 7dcab5a3-a2fa-47a7-8adf-d94d46ca9fc9
path: VideoStimulusSet/exp_gratingsAdap_s3_22.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-11T19:22:43.168880-05:00'
id: urn:uuid:22a78e3b-2b22-4419-a9b5-45fb838f8a9a
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-11T19:22:43.168880-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-11T19:22:15.552496-05:00'
contentSize: 370716
contentUrl:
- https://api.dandiarchive.org/api/assets/cf91bc2a-38d3-4cfd-b54b-8d797dcce640/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000804/blobs/ca9/30b/ca930b96-5e34-4c0e-9152-512df421787d
dateModified: '2024-01-11T19:22:44.792687-05:00'
digest:
dandi:dandi-etag: 89e25b3f24e8ea018165871ca9dcf4e0-1
dandi:sha2-256: 805456093f242dff06e41ed0c4f02089b8cde3f569f93c2517c0375c8cd094d2
encodingFormat: video/mp4
id: dandiasset:cf91bc2a-38d3-4cfd-b54b-8d797dcce640
identifier: cf91bc2a-38d3-4cfd-b54b-8d797dcce640
path: VideoStimulusSet/exp_gratingsAdap_s3_23.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-11T19:22:44.792642-05:00'
id: urn:uuid:f001bc76-5084-43aa-8e8f-716d20da4b12
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-11T19:22:44.792642-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-11T19:22:15.579496-05:00'
contentSize: 364108
contentUrl:
- https://api.dandiarchive.org/api/assets/4cea16a3-8d42-4089-b134-8c6bc6dacc54/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000804/blobs/abb/d9a/abbd9a79-a1f9-46e8-974b-e09bf3f031fd
dateModified: '2024-01-11T19:22:45.687977-05:00'
digest:
dandi:dandi-etag: dd63b5d3c977947b917b735e0dfd15a7-1
dandi:sha2-256: 2020dd12aa83fac18728774ee4db2019a6aa0e6b4e3afbdc87bfdfe46f5fb8ec
encodingFormat: video/mp4
id: dandiasset:4cea16a3-8d42-4089-b134-8c6bc6dacc54
identifier: 4cea16a3-8d42-4089-b134-8c6bc6dacc54
path: VideoStimulusSet/exp_gratingsAdap_s3_24.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-11T19:22:45.687939-05:00'
id: urn:uuid:99e94aff-f2b2-4cc1-885f-80cdc0c28691
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-11T19:22:45.687939-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-11T19:22:15.638496-05:00'
contentSize: 359496
contentUrl:
- https://api.dandiarchive.org/api/assets/20a638d6-4b5a-452a-86bd-fb118231cde6/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000804/blobs/dc0/3ef/dc03efad-5cc9-4a3d-a09b-22599e7d75cc
dateModified: '2024-01-11T19:22:47.045722-05:00'
digest:
dandi:dandi-etag: 64d81486a1e40cd4639480ec4d49ed73-1
dandi:sha2-256: 4e550232d043accd06a95087666b3ad66e3549f49c3d3f037d0783e1dac164e2
encodingFormat: video/mp4
id: dandiasset:20a638d6-4b5a-452a-86bd-fb118231cde6
identifier: 20a638d6-4b5a-452a-86bd-fb118231cde6
path: VideoStimulusSet/exp_gratingsAdap_s3_26.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-11T19:22:47.045686-05:00'
id: urn:uuid:97dc9cfa-32c2-4e01-8c09-b68b37ead937
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-11T19:22:47.045686-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-11T19:22:15.667496-05:00'
contentSize: 368432
contentUrl:
- https://api.dandiarchive.org/api/assets/514f0a5c-f6f2-4e59-b382-99cb625e5828/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000804/blobs/896/144/89614436-1280-4d45-ac29-0456e8339a11
dateModified: '2024-01-11T19:22:47.654387-05:00'
digest:
dandi:dandi-etag: 8f4eb119baf66c996b624dd5bf72a0ce-1
dandi:sha2-256: 61ba53bcd0ecf36dc89f793abb991ea50b930c4199e0f9550d235658dce1710e
encodingFormat: video/mp4
id: dandiasset:514f0a5c-f6f2-4e59-b382-99cb625e5828
identifier: 514f0a5c-f6f2-4e59-b382-99cb625e5828
path: VideoStimulusSet/exp_gratingsAdap_s3_27.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-11T19:22:47.654354-05:00'
id: urn:uuid:7c0b0c84-fa17-4ba9-9814-c5d4cbbe758a
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-11T19:22:47.654354-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-11T19:22:15.626496-05:00'
contentSize: 358153
contentUrl:
- https://api.dandiarchive.org/api/assets/a969c0ce-9e64-494f-993a-25482ed867dc/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000804/blobs/264/c19/264c1917-dbb0-453e-b386-f67a09e1683b
dateModified: '2024-01-11T19:22:46.597325-05:00'
digest:
dandi:dandi-etag: ffa00915ce110655f517d77518ab7167-1
dandi:sha2-256: a7b799995899b770e892e77ebac2c4d473e9cb1952a949de1f3a4561c58c2263
encodingFormat: video/mp4
id: dandiasset:a969c0ce-9e64-494f-993a-25482ed867dc
identifier: a969c0ce-9e64-494f-993a-25482ed867dc
path: VideoStimulusSet/exp_gratingsAdap_s3_25.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-11T19:22:46.597291-05:00'
id: urn:uuid:4f621460-c49a-40b5-96c1-7746ed063483
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-11T19:22:46.597291-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-11T19:22:15.678496-05:00'
contentSize: 363894
contentUrl:
- https://api.dandiarchive.org/api/assets/e027ea8f-36f2-4536-9314-f56d78c99eaf/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000804/blobs/b8a/763/b8a7633f-a78a-43ee-87ea-d5b31cbbe93f
dateModified: '2024-01-11T19:22:48.807847-05:00'
digest:
dandi:dandi-etag: f2b2602d9007e38175e273ab76e4b663-1
dandi:sha2-256: f9d3d40a6d5de1d887f40a906e8ed55a456c429b792fd36d632128b2cf2d143c
encodingFormat: video/mp4
id: dandiasset:e027ea8f-36f2-4536-9314-f56d78c99eaf
identifier: e027ea8f-36f2-4536-9314-f56d78c99eaf
path: VideoStimulusSet/exp_gratingsAdap_s3_28.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-11T19:22:48.807812-05:00'
id: urn:uuid:a46e120a-1730-4a34-a01d-043415b6e29f
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-11T19:22:48.807812-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-11T19:22:15.697496-05:00'
contentSize: 370734
contentUrl:
- https://api.dandiarchive.org/api/assets/6b1a2b91-af6b-491a-8f90-baeee123f881/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000804/blobs/543/47f/54347f2c-62d1-442c-ab8e-3e50e0829614
dateModified: '2024-01-11T19:22:49.223932-05:00'
digest:
dandi:dandi-etag: 4508ebd0d1a5e33b8cfecb45caeb3d1e-1
dandi:sha2-256: 26b915ed3f27b17b4203dcca82947a45d7f2cd580661ce21ae5315ded766a765
encodingFormat: video/mp4
id: dandiasset:6b1a2b91-af6b-491a-8f90-baeee123f881
identifier: 6b1a2b91-af6b-491a-8f90-baeee123f881
path: VideoStimulusSet/exp_gratingsAdap_s3_29.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-11T19:22:49.223880-05:00'
id: urn:uuid:3d19c4cf-ec9b-4819-85be-d30b03c2fcc6
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-11T19:22:49.223880-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-11T19:22:15.726496-05:00'
contentSize: 366909
contentUrl:
- https://api.dandiarchive.org/api/assets/2607765c-66f8-466e-b941-cf78812c79b4/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000804/blobs/1a7/f19/1a7f196b-c07c-49b3-9881-f39e050e8757
dateModified: '2024-01-11T19:22:51.017034-05:00'
digest:
dandi:dandi-etag: d0a852a76d9dbb61756e4513144bb912-1
dandi:sha2-256: 0d422e7e2ef573e51a94f5e03e48252c7b41b05bd997a7f89fb0c168fb3886d2
encodingFormat: video/mp4
id: dandiasset:2607765c-66f8-466e-b941-cf78812c79b4
identifier: 2607765c-66f8-466e-b941-cf78812c79b4
path: VideoStimulusSet/exp_gratingsAdap_s3_3.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-11T19:22:51.016989-05:00'
id: urn:uuid:63fe6c90-5375-463b-a9c0-44005943040c
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-11T19:22:51.016989-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-11T19:22:15.737496-05:00'
contentSize: 371643
contentUrl:
- https://api.dandiarchive.org/api/assets/da613297-5f0a-4b26-964d-84addc59a440/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000804/blobs/1ca/664/1ca66405-9d74-4cf8-a153-23df74a68f4b
dateModified: '2024-01-11T19:22:51.758977-05:00'
digest:
dandi:dandi-etag: 0f19fd21a950bc2836f2c06948e71830-1
dandi:sha2-256: 19db00ffffb872c4db48aebeeb4c12b491f76f665019309c18090670b5779dc2
encodingFormat: video/mp4
id: dandiasset:da613297-5f0a-4b26-964d-84addc59a440
identifier: da613297-5f0a-4b26-964d-84addc59a440
path: VideoStimulusSet/exp_gratingsAdap_s3_30.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-11T19:22:51.758933-05:00'
id: urn:uuid:d483f527-9055-4f8a-8603-5cfb282c0df4
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-11T19:22:51.758933-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-11T19:22:15.747496-05:00'
contentSize: 360161
contentUrl:
- https://api.dandiarchive.org/api/assets/df0b4938-6bd4-4838-b905-48c41258db1b/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000804/blobs/ac1/cf2/ac1cf21e-2a5e-4650-b538-a0308d11679a
dateModified: '2024-01-11T19:22:51.819208-05:00'
digest:
dandi:dandi-etag: 5edb7a1f6b3f9b3e72c08c86fb688741-1
dandi:sha2-256: cc94d1c9661e647143518f6e3ab6ab0a26598ad793c2787a8bf1c1b8853e7455
encodingFormat: video/mp4
id: dandiasset:df0b4938-6bd4-4838-b905-48c41258db1b
identifier: df0b4938-6bd4-4838-b905-48c41258db1b
path: VideoStimulusSet/exp_gratingsAdap_s3_31.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-11T19:22:51.819181-05:00'
id: urn:uuid:f5dca03c-34d8-48d5-82be-d3deac150134
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-11T19:22:51.819181-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-11T19:22:15.758496-05:00'
contentSize: 368826
contentUrl:
- https://api.dandiarchive.org/api/assets/f9af2048-6cfa-4658-9e8b-98fc0a56ceac/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000804/blobs/a60/d19/a60d19e1-3d58-40c8-a98c-df9092f34e13
dateModified: '2024-01-11T19:22:52.532149-05:00'
digest:
dandi:dandi-etag: 096a1fa7f5ad40dde83272cc1a4cd749-1
dandi:sha2-256: 79ed0d06f27458b826f3a0d86a9952d93bca593516414a7e89e9a8cba6181ad8
encodingFormat: video/mp4
id: dandiasset:f9af2048-6cfa-4658-9e8b-98fc0a56ceac
identifier: f9af2048-6cfa-4658-9e8b-98fc0a56ceac
path: VideoStimulusSet/exp_gratingsAdap_s3_32.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-11T19:22:52.532035-05:00'
id: urn:uuid:a347f58d-66c4-4f59-b156-30d35b66ae76
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-11T19:22:52.532035-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-11T19:22:15.783496-05:00'
contentSize: 364066
contentUrl:
- https://api.dandiarchive.org/api/assets/6803f2ea-d820-48be-af30-c594744d59fa/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000804/blobs/71b/07b/71b07b75-1eb2-4d50-be6a-60ce25624567
dateModified: '2024-01-11T19:22:53.461170-05:00'
digest:
dandi:dandi-etag: bf762387841b5bb6c4cfba998549abfa-1
dandi:sha2-256: daa1187335208ee94377a21b0a8ef7b8cb0ff60757b9b8ecd7cc62c4c92aad6a
encodingFormat: video/mp4
id: dandiasset:6803f2ea-d820-48be-af30-c594744d59fa
identifier: 6803f2ea-d820-48be-af30-c594744d59fa
path: VideoStimulusSet/exp_gratingsAdap_s3_33.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-11T19:22:53.461127-05:00'
id: urn:uuid:907b4614-f7db-49e4-a888-94284e94c17e
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-11T19:22:53.461127-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-11T19:22:15.806496-05:00'
contentSize: 362272
contentUrl:
- https://api.dandiarchive.org/api/assets/1d616e40-08f3-4b5c-8f11-6d8d59b3347a/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000804/blobs/c2c/748/c2c74888-8958-4531-b7f4-04a5edfc7b1a
dateModified: '2024-01-11T19:22:53.733031-05:00'
digest:
dandi:dandi-etag: 9cd01ac8c9e967f1c4f1f3e2220c45cf-1
dandi:sha2-256: 2a74938aed32e5d774bd16350122e792cbe733c3ba086bbff42a146498aa45f4
encodingFormat: video/mp4
id: dandiasset:1d616e40-08f3-4b5c-8f11-6d8d59b3347a
identifier: 1d616e40-08f3-4b5c-8f11-6d8d59b3347a
path: VideoStimulusSet/exp_gratingsAdap_s3_34.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-11T19:22:53.732964-05:00'
id: urn:uuid:bf59cbfe-3a6c-4bd0-85f4-fb6187f2d977
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-11T19:22:53.732964-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-11T19:22:15.826496-05:00'
contentSize: 364298
contentUrl:
- https://api.dandiarchive.org/api/assets/84bb3bff-a306-4804-a517-c65ccee1c784/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000804/blobs/9ef/875/9ef8753b-dd89-4c77-8546-869094c64277
dateModified: '2024-01-11T19:22:55.958316-05:00'
digest:
dandi:dandi-etag: f7e62b04b164919519a260487238da0a-1
dandi:sha2-256: 6cd592c3fb136eac823f5989b7c56f3d486ad02b574e134a0ad0806e2fbd542a
encodingFormat: video/mp4
id: dandiasset:84bb3bff-a306-4804-a517-c65ccee1c784
identifier: 84bb3bff-a306-4804-a517-c65ccee1c784
path: VideoStimulusSet/exp_gratingsAdap_s3_36.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-11T19:22:55.958266-05:00'
id: urn:uuid:6ea8eced-0f2a-4084-bdcf-d1df2e36793c
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-11T19:22:55.958266-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-11T19:22:15.845496-05:00'
contentSize: 366282
contentUrl:
- https://api.dandiarchive.org/api/assets/60c0a206-08af-4c6e-bcec-93361cd7c75a/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000804/blobs/3d9/044/3d9044c7-053f-4566-b59a-10572ebcf074
dateModified: '2024-01-11T19:22:56.699152-05:00'
digest:
dandi:dandi-etag: ba8c42a2eda9749f6095c3318c641152-1
dandi:sha2-256: 892fb4f0bd079dd17f96eaadacb712033301cb44352ae03589bc9b0a71a06f3d
encodingFormat: video/mp4
id: dandiasset:60c0a206-08af-4c6e-bcec-93361cd7c75a
identifier: 60c0a206-08af-4c6e-bcec-93361cd7c75a
path: VideoStimulusSet/exp_gratingsAdap_s3_37.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-11T19:22:56.699106-05:00'
id: urn:uuid:ba17757b-6eee-42b3-af87-9930ae0f79b7
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-11T19:22:56.699106-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-11T19:22:15.877496-05:00'
contentSize: 371220
contentUrl:
- https://api.dandiarchive.org/api/assets/b2f4be97-e46e-473f-9458-0d660292db35/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000804/blobs/a6f/9ab/a6f9abfb-6e5c-4407-b478-f2dbac390bc0
dateModified: '2024-01-11T19:22:57.854144-05:00'
digest:
dandi:dandi-etag: 9ab0809c733cc5e9e726583125516658-1
dandi:sha2-256: 912a18013cccf3a707b73c11a9334a5cf31534d725cc59beaa723dfd89e7cdb2
encodingFormat: video/mp4
id: dandiasset:b2f4be97-e46e-473f-9458-0d660292db35
identifier: b2f4be97-e46e-473f-9458-0d660292db35
path: VideoStimulusSet/exp_gratingsAdap_s3_39.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-11T19:22:57.854096-05:00'
id: urn:uuid:0fa626bd-f76b-4ebf-a3b4-4dc112b75ccc
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-11T19:22:57.854096-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-11T19:22:15.867496-05:00'
contentSize: 370648
contentUrl:
- https://api.dandiarchive.org/api/assets/2733d677-0d97-4b65-a281-3a93c5f9f2e0/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000804/blobs/b8a/6ed/b8a6edd5-f4a8-4eb3-b52b-8a4da38d8bec
dateModified: '2024-01-11T19:22:57.791329-05:00'
digest:
dandi:dandi-etag: 5bfab806054e72aa8c33fe8a83e36793-1
dandi:sha2-256: 9972119d33035b84d0fe5d24a8df8a31f8d0e35971b34275c737ce98bae34d74
encodingFormat: video/mp4
id: dandiasset:2733d677-0d97-4b65-a281-3a93c5f9f2e0
identifier: 2733d677-0d97-4b65-a281-3a93c5f9f2e0
path: VideoStimulusSet/exp_gratingsAdap_s3_38.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-11T19:22:57.791166-05:00'
id: urn:uuid:bfcf5061-ed51-4c67-a2f7-bd474363a722
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-11T19:22:57.791166-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-11T19:22:15.898496-05:00'
contentSize: 362332
contentUrl:
- https://api.dandiarchive.org/api/assets/1a6dabb0-f61f-493f-ab9f-682680af3b30/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000804/blobs/ec6/0ce/ec60cee7-df18-4061-964f-01cddf229dce
dateModified: '2024-01-11T19:22:59.368370-05:00'
digest:
dandi:dandi-etag: 9da3c051c101929fcaf5b96187d12d7a-1
dandi:sha2-256: 93418ad75c78b652a41dc4eda305345803af154ac4ac2d424bed4099adef90ca
encodingFormat: video/mp4
id: dandiasset:1a6dabb0-f61f-493f-ab9f-682680af3b30
identifier: 1a6dabb0-f61f-493f-ab9f-682680af3b30
path: VideoStimulusSet/exp_gratingsAdap_s3_4.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-11T19:22:59.368310-05:00'
id: urn:uuid:ac905c77-2739-409c-a5ef-f06f6062c0a8
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-11T19:22:59.368310-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-11T19:22:15.928496-05:00'
contentSize: 364908
contentUrl:
- https://api.dandiarchive.org/api/assets/b2a03d97-2ea9-49c9-8de1-7a3dd5fb7d13/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000804/blobs/231/d52/231d52f6-e7dd-4510-887d-4ae23830bda1
dateModified: '2024-01-11T19:23:00.303960-05:00'
digest:
dandi:dandi-etag: b614d1e07bc8e4bbaab4e085a516e6a1-1
dandi:sha2-256: 7aac473f3847c0ddc0a3dee8fb683099e96e5e4493df4188a5a6f1e1d7492673
encodingFormat: video/mp4
id: dandiasset:b2a03d97-2ea9-49c9-8de1-7a3dd5fb7d13
identifier: b2a03d97-2ea9-49c9-8de1-7a3dd5fb7d13
path: VideoStimulusSet/exp_gratingsAdap_s3_5.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-11T19:23:00.303907-05:00'
id: urn:uuid:d1eb0b62-4d7c-4031-8b7b-5e46b15171ee
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-11T19:23:00.303907-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-11T19:22:15.938496-05:00'
contentSize: 362461
contentUrl:
- https://api.dandiarchive.org/api/assets/8c7c7ba4-6c8a-4c91-a370-8ebf92bfa1e1/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000804/blobs/e04/77c/e0477c3a-39f2-486c-81c0-b823911578ea
dateModified: '2024-01-11T19:23:01.059636-05:00'
digest:
dandi:dandi-etag: 297133597d16fca67775069d58bd61f5-1
dandi:sha2-256: a26a0becf6be3f5f25a8ea8f767a343d61e452a26c4a3693bb9d9681160e8780
encodingFormat: video/mp4
id: dandiasset:8c7c7ba4-6c8a-4c91-a370-8ebf92bfa1e1
identifier: 8c7c7ba4-6c8a-4c91-a370-8ebf92bfa1e1
path: VideoStimulusSet/exp_gratingsAdap_s3_6.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-11T19:23:01.059603-05:00'
id: urn:uuid:95aafc9a-0d53-4b6d-91f0-d2057d44ee03
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-11T19:23:01.059603-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-11T19:22:15.974496-05:00'
contentSize: 374898
contentUrl:
- https://api.dandiarchive.org/api/assets/048aad3f-ffde-4a28-a3dd-dcac6be64070/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000804/blobs/48c/f30/48cf30a0-6d9e-481a-bffd-31721674ce67
dateModified: '2024-01-11T19:23:01.101467-05:00'
digest:
dandi:dandi-etag: 32f987402616dd22c68db803668dcc45-1
dandi:sha2-256: aa9ad6746a19dde9c7342b4d776018d01de39fd1e53754ecdfb2d3581c194ca2
encodingFormat: video/mp4
id: dandiasset:048aad3f-ffde-4a28-a3dd-dcac6be64070
identifier: 048aad3f-ffde-4a28-a3dd-dcac6be64070
path: VideoStimulusSet/exp_gratingsAdap_s3_7.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-11T19:23:01.101438-05:00'
id: urn:uuid:761b6f44-37ef-45eb-b886-a17b069b7c88
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-11T19:23:01.101438-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-11T19:22:15.816496-05:00'
contentSize: 369888
contentUrl:
- https://api.dandiarchive.org/api/assets/888fc735-048d-4573-ba44-e68d71be1346/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000804/blobs/0f4/9e8/0f49e845-4656-47af-a116-ae1509798fb8
dateModified: '2024-01-11T19:22:55.894836-05:00'
digest:
dandi:dandi-etag: 6d843476fd92be0b13b70a526c25967b-1
dandi:sha2-256: 84a94035437f28ff93318d94dba5a1769f9b06828d8fff5bcbf73fc7431a2bb3
encodingFormat: video/mp4
id: dandiasset:888fc735-048d-4573-ba44-e68d71be1346
identifier: 888fc735-048d-4573-ba44-e68d71be1346
path: VideoStimulusSet/exp_gratingsAdap_s3_35.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-11T19:22:55.894750-05:00'
id: urn:uuid:65efa09d-1141-4397-9d89-b74c21a000ab
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-11T19:22:55.894750-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-11T19:22:15.985496-05:00'
contentSize: 373961
contentUrl:
- https://api.dandiarchive.org/api/assets/5b6c54de-0b3e-4041-9714-323b545a49ac/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000804/blobs/449/545/44954546-11a8-4dbd-b444-eb9830b4fd56
dateModified: '2024-01-11T19:23:03.119019-05:00'
digest:
dandi:dandi-etag: 6198cb3c8960400f5da0f0e5f688e446-1
dandi:sha2-256: cf3ec2098f0bb8bb8fd328c07195f321aa816b4245cc8de918b5cb0d152f0a91
encodingFormat: video/mp4
id: dandiasset:5b6c54de-0b3e-4041-9714-323b545a49ac
identifier: 5b6c54de-0b3e-4041-9714-323b545a49ac
path: VideoStimulusSet/exp_gratingsAdap_s3_8.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-11T19:23:03.118985-05:00'
id: urn:uuid:97a824b7-0d27-42f7-8acd-6f2a724f30c7
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-11T19:23:03.118985-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-11T19:22:16.023496-05:00'
contentSize: 367988
contentUrl:
- https://api.dandiarchive.org/api/assets/1f5f82f8-fda2-41bf-9a13-d0ed31b31d27/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000804/blobs/bfe/9fa/bfe9fa32-3efd-4b8b-9456-28e9af3cc90a
dateModified: '2024-01-11T19:23:03.799361-05:00'
digest:
dandi:dandi-etag: 23689bc8e3ab2c1a56aa428e21ea890c-1
dandi:sha2-256: 34f643cbefdebeaaf4ad972c165fbb4c812c3372d60b17a1b936adadbbb7dbab
encodingFormat: video/mp4
id: dandiasset:1f5f82f8-fda2-41bf-9a13-d0ed31b31d27
identifier: 1f5f82f8-fda2-41bf-9a13-d0ed31b31d27
path: VideoStimulusSet/exp_gratingsAdap_s3_9.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-11T19:23:03.799325-05:00'
id: urn:uuid:0e8c4270-bad1-4905-9f7b-7d817bcd21aa
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-11T19:23:03.799325-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: electrophysiological approach
schemaKey: ApproachType
blobDateModified: '2024-04-21T10:06:39.561066-04:00'
contentSize: 699069696
contentUrl:
- https://api.dandiarchive.org/api/assets/f7429e2a-6802-425b-912b-0022d4fadeed/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000804/blobs/434/290/43429037-98c2-48f5-ba26-994990928339
dateModified: '2024-04-21T13:17:39.744281-04:00'
digest:
dandi:dandi-etag: bd351da21c683ee380457486bd4212c1-11
dandi:sha2-256: de8c2f165a2a9be6dc5355ed6d88aa2d4b51fb9a9f03c0a6cf34e29c67fa646e
encodingFormat: application/x-nwb
id: dandiasset:f7429e2a-6802-425b-912b-0022d4fadeed
identifier: f7429e2a-6802-425b-912b-0022d4fadeed
keywords:
- Vistual Stimuli
- Object Recognition
- Inferior temporal cortex (IT)
- Ventral visual pathway
measurementTechnique:
- name: surgical technique
schemaKey: MeasurementTechniqueType
path: sub-pico/sub-pico_ecephys+image.nwb
schemaKey: Asset
schemaVersion: 0.6.7
variableMeasured:
- schemaKey: PropertyValue
value: ElectrodeGroup
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P3327DT59635S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: pico
schemaKey: Participant
sex:
identifier: http://purl.obolibrary.org/obo/PATO_0000384
name: Male
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_9544
name: Macaca mulatta - Rhesus monkey
schemaKey: SpeciesType
wasGeneratedBy:
- description: This NWB is derived from the processing of neurophysiological recordings
in the inferior temporal (IT) cortex of one macaque monkey (indicated in
the file). These recordings were conducted during Rapid Serial Visual Presentation
(RSVP) of randomized images, each presented at the center of gaze during
fixation. The dataset in this file includes a responses from a number of individual
neural recording sites collected via chronically implanted Utah arrays. For each
recording site, the multiunit or single unit response of that site is
summarized as a set of peristimulus time histograms (PSTH). Each PSTH is derived
from the site’s response to repeated, emporally randomized, presentations
of the same image. Thus, the number of PSTHs is identical to the number of images
in the stimulus set (typically 100-2000 images). The number of repetitions
of each image is indicated in the file and the data from individual repetitions
are available in the file. For larger image sets these recordings were
made over a series of consecutive days (usually <5 days). Quality control measures
(e.g. consistency of response pattern over images) collected on each day are used
to check for site stability across those days before producing the final
PSTH estimates for each site. The corresponding visual images used in these recordings
are linked or stored in the "Stimulus_Template" section of each NWB file.
identifier: exp_gratingsAdap_s3
name: exp_gratingsAdap_s3
schemaKey: Session
startDate: '2023-08-01T16:33:55-04:00'
- description: Metadata generated by DANDI cli
endDate: '2024-04-21T13:17:39.744211-04:00'
id: urn:uuid:21f4b33c-e3b9-4620-8f4b-3fc4c86c4a04
name: Metadata generation
schemaKey: Activity
startDate: '2024-04-21T13:17:39.733128-04:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.61.2
Tip!
Press p or to see the previous file or,
n or to see the next file