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:24:37.283485-05:00'
contentSize: 374075
contentUrl:
- https://api.dandiarchive.org/api/assets/f730f32e-2bc9-4e9f-bd0d-73b74096637b/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000805/blobs/2ab/98e/2ab98ef5-3358-4f03-8170-1551c19aea88
dateModified: '2024-01-11T19:24:56.743480-05:00'
digest:
dandi:dandi-etag: e529390bfdcbd0c78c4224262285a5da-1
dandi:sha2-256: a55e462ec16e2f10ddd31ae7326be65ba467aa920e99a67df7b2422e49bd20d4
encodingFormat: video/mp4
id: dandiasset:f730f32e-2bc9-4e9f-bd0d-73b74096637b
identifier: f730f32e-2bc9-4e9f-bd0d-73b74096637b
path: VideoStimulusSet/exp_gratingsAdap_s3_1.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-11T19:24:56.743447-05:00'
id: urn:uuid:3feae92d-64bc-49d2-8fea-1e3479b579b2
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-11T19:24:56.743447-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:24:37.262485-05:00'
contentSize: 379590
contentUrl:
- https://api.dandiarchive.org/api/assets/8cd51b99-7de7-467d-b186-f96416ab79a8/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000805/blobs/b14/e83/b14e83b8-9394-4569-94ef-5f73e7ce981b
dateModified: '2024-01-11T19:24:56.469751-05:00'
digest:
dandi:dandi-etag: b29005a597ddc0c2721e1fb70c303a42-1
dandi:sha2-256: b1fe157cfed8cfdf25607b8018cdcb1cc6157ecbaffab68332f790c3083e7250
encodingFormat: video/mp4
id: dandiasset:8cd51b99-7de7-467d-b186-f96416ab79a8
identifier: 8cd51b99-7de7-467d-b186-f96416ab79a8
path: VideoStimulusSet/exp_gratingsAdap_s3_0.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-11T19:24:56.469715-05:00'
id: urn:uuid:7ee1c001-0a0e-4096-ad13-b435a3ea09a6
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-11T19:24:56.469715-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:24:37.351485-05:00'
contentSize: 363552
contentUrl:
- https://api.dandiarchive.org/api/assets/e9cccb2d-48bf-49c3-a4f3-85674cd03d2a/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000805/blobs/4b6/2a9/4b62a9f7-47df-4c1a-b986-dd0c7b359ae7
dateModified: '2024-01-11T19:24:57.190799-05:00'
digest:
dandi:dandi-etag: dbe0aec9d843250901fdefe473e0e30f-1
dandi:sha2-256: b0c337bef00a067da35069c8f4b8a73b34fe123f10cf72d034b65464c8e98d80
encodingFormat: video/mp4
id: dandiasset:e9cccb2d-48bf-49c3-a4f3-85674cd03d2a
identifier: e9cccb2d-48bf-49c3-a4f3-85674cd03d2a
path: VideoStimulusSet/exp_gratingsAdap_s3_12.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-11T19:24:57.190759-05:00'
id: urn:uuid:59aa4ba3-c21e-4a95-b75c-4d818d51bbbc
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-11T19:24:57.190759-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:24:37.302485-05:00'
contentSize: 365397
contentUrl:
- https://api.dandiarchive.org/api/assets/3736dee3-63cc-4b3a-9e32-869ad12e5004/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000805/blobs/56f/fc8/56ffc8f3-d2ea-46c5-b5de-673bb4b3b80b
dateModified: '2024-01-11T19:24:56.842738-05:00'
digest:
dandi:dandi-etag: 96aa258f094e469b482daec853ddc0bb-1
dandi:sha2-256: c591c4d047a9bf26c6476d8322de13125eadd21826c444fb15b7687ffd0fe5a7
encodingFormat: video/mp4
id: dandiasset:3736dee3-63cc-4b3a-9e32-869ad12e5004
identifier: 3736dee3-63cc-4b3a-9e32-869ad12e5004
path: VideoStimulusSet/exp_gratingsAdap_s3_10.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-11T19:24:56.842711-05:00'
id: urn:uuid:831223ff-8ec0-4386-b491-5e670bebd4f7
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-11T19:24:56.842711-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:24:37.324485-05:00'
contentSize: 360288
contentUrl:
- https://api.dandiarchive.org/api/assets/1bf49b28-527a-4d7c-a5ea-f1e4babb2668/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000805/blobs/87d/0f4/87d0f4b0-9bd1-48fb-b7d3-c37dec08d36b
dateModified: '2024-01-11T19:24:57.057857-05:00'
digest:
dandi:dandi-etag: 1a993835b72a8994f983c0d26c21255d-1
dandi:sha2-256: 657df75587df04e982b6be8033b9cf5719e9d5732e3e91dee54de5e84ec73c31
encodingFormat: video/mp4
id: dandiasset:1bf49b28-527a-4d7c-a5ea-f1e4babb2668
identifier: 1bf49b28-527a-4d7c-a5ea-f1e4babb2668
path: VideoStimulusSet/exp_gratingsAdap_s3_11.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-11T19:24:57.057826-05:00'
id: urn:uuid:edb51d8e-946d-4310-83a2-4e00afe4f3e4
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-11T19:24:57.057826-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:24:37.370485-05:00'
contentSize: 358613
contentUrl:
- https://api.dandiarchive.org/api/assets/d7232870-af54-4303-8aa7-e1be666b09ae/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000805/blobs/234/83e/23483eaa-abb9-4467-9da3-f1c9d5a17aa5
dateModified: '2024-01-11T19:25:00.049457-05:00'
digest:
dandi:dandi-etag: 4d4ec388bf016aa6bcbc43311031a3a3-1
dandi:sha2-256: 53849a6d52a1cd2d2e2b334e3207ceb18936609a22286bd9294bf1afc505a14a
encodingFormat: video/mp4
id: dandiasset:d7232870-af54-4303-8aa7-e1be666b09ae
identifier: d7232870-af54-4303-8aa7-e1be666b09ae
path: VideoStimulusSet/exp_gratingsAdap_s3_13.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-11T19:25:00.049410-05:00'
id: urn:uuid:07e18e91-9247-4499-bfaa-938b50472373
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-11T19:25:00.049410-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:24:37.389485-05:00'
contentSize: 373958
contentUrl:
- https://api.dandiarchive.org/api/assets/3013c176-5c8c-4ac0-8d1f-d6faaf598b2f/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000805/blobs/9f8/9af/9f89af29-e73e-4ea2-9c90-eda52769e8e2
dateModified: '2024-01-11T19:25:00.250743-05:00'
digest:
dandi:dandi-etag: 74528bd8ef35c1de6b3a502bf23ffb22-1
dandi:sha2-256: 9dcfd76022f34525131ef78e21bc3a3d8852f459a594e370e8d8ae4526875e8c
encodingFormat: video/mp4
id: dandiasset:3013c176-5c8c-4ac0-8d1f-d6faaf598b2f
identifier: 3013c176-5c8c-4ac0-8d1f-d6faaf598b2f
path: VideoStimulusSet/exp_gratingsAdap_s3_14.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-11T19:25:00.250722-05:00'
id: urn:uuid:9684df78-81ca-4b6c-886c-e35a5a1aa08d
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-11T19:25:00.250722-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:24:37.413485-05:00'
contentSize: 364467
contentUrl:
- https://api.dandiarchive.org/api/assets/1f1ec0e2-6479-4a32-9fe1-e4ac94f2af8f/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000805/blobs/966/8a9/9668a912-f7db-460e-a358-68c329f15cb4
dateModified: '2024-01-11T19:25:00.219975-05:00'
digest:
dandi:dandi-etag: 9ba95086770023cd14179f49489c91f4-1
dandi:sha2-256: 54d82790f2d3cda6147004ea98f234815f2b032e3370d4dcf4e10b4f13deda8e
encodingFormat: video/mp4
id: dandiasset:1f1ec0e2-6479-4a32-9fe1-e4ac94f2af8f
identifier: 1f1ec0e2-6479-4a32-9fe1-e4ac94f2af8f
path: VideoStimulusSet/exp_gratingsAdap_s3_15.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-11T19:25:00.219929-05:00'
id: urn:uuid:1714a1fd-d9e2-4f03-b023-0b56d0ae552c
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-11T19:25:00.219929-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:24:37.453485-05:00'
contentSize: 368020
contentUrl:
- https://api.dandiarchive.org/api/assets/cd8b3a9b-153e-4246-9741-612d779a1ba3/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000805/blobs/133/e48/133e4897-56bb-4a84-8c9a-ff8632d1ba32
dateModified: '2024-01-11T19:25:00.450597-05:00'
digest:
dandi:dandi-etag: 914ee3ac07978085cd4881af8ee33716-1
dandi:sha2-256: c643d982697646909766133e2843778a84a1ca0bebbbaf9fc6ae342fbc8ce524
encodingFormat: video/mp4
id: dandiasset:cd8b3a9b-153e-4246-9741-612d779a1ba3
identifier: cd8b3a9b-153e-4246-9741-612d779a1ba3
path: VideoStimulusSet/exp_gratingsAdap_s3_16.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-11T19:25:00.450567-05:00'
id: urn:uuid:7d99fc62-69ce-44ee-8184-a64041f8ca2c
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-11T19:25:00.450567-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:24:37.482485-05:00'
contentSize: 365823
contentUrl:
- https://api.dandiarchive.org/api/assets/2b7eb2e8-7e8f-46eb-9e92-00ebef108778/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000805/blobs/6de/f8a/6def8a87-fd66-462d-9f0d-79f051e0d4fa
dateModified: '2024-01-11T19:25:00.632998-05:00'
digest:
dandi:dandi-etag: 83e41c28df8d8f22ccb4d64d93824b10-1
dandi:sha2-256: 3d37692ae8243a2e85530ff94ecfaf9d3eafff088fb08ff960356239c222d449
encodingFormat: video/mp4
id: dandiasset:2b7eb2e8-7e8f-46eb-9e92-00ebef108778
identifier: 2b7eb2e8-7e8f-46eb-9e92-00ebef108778
path: VideoStimulusSet/exp_gratingsAdap_s3_17.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-11T19:25:00.632941-05:00'
id: urn:uuid:049b8653-f6ad-4834-9b06-80335793e22d
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-11T19:25:00.632941-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:24:37.551485-05:00'
contentSize: 372374
contentUrl:
- https://api.dandiarchive.org/api/assets/bfc5b9dd-b156-480f-8e0d-0abe59dfb2fd/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000805/blobs/d88/f6e/d88f6ea1-9d17-44d4-80f2-edeee0f197cb
dateModified: '2024-01-11T19:25:02.591235-05:00'
digest:
dandi:dandi-etag: 6b9cdcf34d9ee0f7bd9459691a04e3fa-1
dandi:sha2-256: 04d59ca1053773e34915f40ba38ebe7399a976baabdf9e4ff7d4c885646103a0
encodingFormat: video/mp4
id: dandiasset:bfc5b9dd-b156-480f-8e0d-0abe59dfb2fd
identifier: bfc5b9dd-b156-480f-8e0d-0abe59dfb2fd
path: VideoStimulusSet/exp_gratingsAdap_s3_18.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-11T19:25:02.591201-05:00'
id: urn:uuid:a03efa7f-51db-4206-acc4-4b423bc81c63
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-11T19:25:02.591201-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:24:37.604485-05:00'
contentSize: 373233
contentUrl:
- https://api.dandiarchive.org/api/assets/b4fc764c-06d7-494c-896b-8b60764d778e/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000805/blobs/b14/c57/b14c573b-48c1-42a5-998e-842cec3b7403
dateModified: '2024-01-11T19:25:04.142704-05:00'
digest:
dandi:dandi-etag: 662472684a9c74b1f282fdac396152e2-1
dandi:sha2-256: 36ccdc2710fe1150f11377c0d692954da3ce6e923f0dd41a1791d46480e85445
encodingFormat: video/mp4
id: dandiasset:b4fc764c-06d7-494c-896b-8b60764d778e
identifier: b4fc764c-06d7-494c-896b-8b60764d778e
path: VideoStimulusSet/exp_gratingsAdap_s3_19.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-11T19:25:04.142670-05:00'
id: urn:uuid:95a14731-658f-487a-a332-9c7aaff23222
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-11T19:25:04.142670-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:24:37.643485-05:00'
contentSize: 364337
contentUrl:
- https://api.dandiarchive.org/api/assets/cdd40a4f-83bb-4d2a-98b3-e037a167e775/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000805/blobs/74a/7a0/74a7a0a6-f1fe-4441-bb71-ba40ec9a266a
dateModified: '2024-01-11T19:25:04.464945-05:00'
digest:
dandi:dandi-etag: 976d1accdedf62ce243285eeb979e88e-1
dandi:sha2-256: 3081495778be37ff995bb934d543eed1764f5934f25e002f97e2b2dcb60a4809
encodingFormat: video/mp4
id: dandiasset:cdd40a4f-83bb-4d2a-98b3-e037a167e775
identifier: cdd40a4f-83bb-4d2a-98b3-e037a167e775
path: VideoStimulusSet/exp_gratingsAdap_s3_2.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-11T19:25:04.464893-05:00'
id: urn:uuid:52ef51c3-6975-4185-9d52-3609a4098c6e
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-11T19:25:04.464893-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:24:37.685485-05:00'
contentSize: 362101
contentUrl:
- https://api.dandiarchive.org/api/assets/105c11d5-5f6b-485d-9937-9d27caa8351e/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000805/blobs/f5a/1e4/f5a1e4fb-665b-4659-9d7e-1bf7aafc863c
dateModified: '2024-01-11T19:25:04.581387-05:00'
digest:
dandi:dandi-etag: 2dbf4105abf00943bf51ca3db686ffbf-1
dandi:sha2-256: 0cbf6635d768d63b8424009e02be2de0b0f5ce51943e56f4967df598b68d9c16
encodingFormat: video/mp4
id: dandiasset:105c11d5-5f6b-485d-9937-9d27caa8351e
identifier: 105c11d5-5f6b-485d-9937-9d27caa8351e
path: VideoStimulusSet/exp_gratingsAdap_s3_21.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-11T19:25:04.581349-05:00'
id: urn:uuid:f1acadd5-7e3b-471d-9828-c1a9952dfa07
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-11T19:25:04.581349-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:24:37.663485-05:00'
contentSize: 372690
contentUrl:
- https://api.dandiarchive.org/api/assets/40b076e5-96cd-414c-a880-ecfc1d8ea041/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000805/blobs/fce/de2/fcede28e-47a2-4529-9d5a-2d04f60d94d7
dateModified: '2024-01-11T19:25:04.532137-05:00'
digest:
dandi:dandi-etag: 1a0e487ca6963b562d3c211674407859-1
dandi:sha2-256: 11bdbdae3db366e7c102407f19206bd3f593040a9b7038f496386a4fb1382fd4
encodingFormat: video/mp4
id: dandiasset:40b076e5-96cd-414c-a880-ecfc1d8ea041
identifier: 40b076e5-96cd-414c-a880-ecfc1d8ea041
path: VideoStimulusSet/exp_gratingsAdap_s3_20.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-11T19:25:04.532079-05:00'
id: urn:uuid:7881390e-85ae-4042-a122-174b31520e8a
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-11T19:25:04.532079-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:24:37.697484-05:00'
contentSize: 367931
contentUrl:
- https://api.dandiarchive.org/api/assets/f86ce5c6-5377-4b90-b97e-9628d3611629/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000805/blobs/35b/0c0/35b0c0de-e02f-4037-b631-79b30992eecf
dateModified: '2024-01-11T19:25:05.782616-05:00'
digest:
dandi:dandi-etag: 3fd93c8d68133d2f5a7083aa144648ec-1
dandi:sha2-256: d636eee48603781443c477f308819c08d8bc3e1f7e112922eff56362082cf365
encodingFormat: video/mp4
id: dandiasset:f86ce5c6-5377-4b90-b97e-9628d3611629
identifier: f86ce5c6-5377-4b90-b97e-9628d3611629
path: VideoStimulusSet/exp_gratingsAdap_s3_22.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-11T19:25:05.782584-05:00'
id: urn:uuid:2a0529ae-411c-4ef9-89fb-d44d9f53d8e3
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-11T19:25:05.782584-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:24:37.727485-05:00'
contentSize: 370716
contentUrl:
- https://api.dandiarchive.org/api/assets/7f7d0f02-6471-426c-ba76-1e74ee03dbf3/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000805/blobs/640/c12/640c124c-ad7d-4606-82c9-030fdfc0f4a3
dateModified: '2024-01-11T19:25:06.617662-05:00'
digest:
dandi:dandi-etag: 89e25b3f24e8ea018165871ca9dcf4e0-1
dandi:sha2-256: 805456093f242dff06e41ed0c4f02089b8cde3f569f93c2517c0375c8cd094d2
encodingFormat: video/mp4
id: dandiasset:7f7d0f02-6471-426c-ba76-1e74ee03dbf3
identifier: 7f7d0f02-6471-426c-ba76-1e74ee03dbf3
path: VideoStimulusSet/exp_gratingsAdap_s3_23.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-11T19:25:06.617501-05:00'
id: urn:uuid:44a34ef6-215d-4854-b10d-ee645ffb5f13
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-11T19:25:06.617501-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:24:37.763484-05:00'
contentSize: 364108
contentUrl:
- https://api.dandiarchive.org/api/assets/7617ea20-7fc2-4b49-86cb-6c5939a81de8/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000805/blobs/1b9/527/1b952726-b536-48a9-a9a2-54da631ef2ab
dateModified: '2024-01-11T19:25:08.430432-05:00'
digest:
dandi:dandi-etag: dd63b5d3c977947b917b735e0dfd15a7-1
dandi:sha2-256: 2020dd12aa83fac18728774ee4db2019a6aa0e6b4e3afbdc87bfdfe46f5fb8ec
encodingFormat: video/mp4
id: dandiasset:7617ea20-7fc2-4b49-86cb-6c5939a81de8
identifier: 7617ea20-7fc2-4b49-86cb-6c5939a81de8
path: VideoStimulusSet/exp_gratingsAdap_s3_24.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-11T19:25:08.430403-05:00'
id: urn:uuid:e7696ce4-b22d-4571-a910-7836c3cfc303
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-11T19:25:08.430403-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:24:37.794485-05:00'
contentSize: 359496
contentUrl:
- https://api.dandiarchive.org/api/assets/9c3bb7ed-1991-44f0-99a9-62b21b8fa2c7/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000805/blobs/e7c/65d/e7c65d74-a77e-4bb1-9227-29bd52142cd0
dateModified: '2024-01-11T19:25:08.948856-05:00'
digest:
dandi:dandi-etag: 64d81486a1e40cd4639480ec4d49ed73-1
dandi:sha2-256: 4e550232d043accd06a95087666b3ad66e3549f49c3d3f037d0783e1dac164e2
encodingFormat: video/mp4
id: dandiasset:9c3bb7ed-1991-44f0-99a9-62b21b8fa2c7
identifier: 9c3bb7ed-1991-44f0-99a9-62b21b8fa2c7
path: VideoStimulusSet/exp_gratingsAdap_s3_26.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-11T19:25:08.948821-05:00'
id: urn:uuid:e65441f5-635a-471c-b3b2-9b44943a13a4
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-11T19:25:08.948821-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:24:37.783485-05:00'
contentSize: 358153
contentUrl:
- https://api.dandiarchive.org/api/assets/19fed0a8-aaab-4ddf-893b-394b8fb78dbd/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000805/blobs/e9e/1ec/e9e1ec09-b672-4a96-8bf9-e8d573b728b2
dateModified: '2024-01-11T19:25:08.848497-05:00'
digest:
dandi:dandi-etag: ffa00915ce110655f517d77518ab7167-1
dandi:sha2-256: a7b799995899b770e892e77ebac2c4d473e9cb1952a949de1f3a4561c58c2263
encodingFormat: video/mp4
id: dandiasset:19fed0a8-aaab-4ddf-893b-394b8fb78dbd
identifier: 19fed0a8-aaab-4ddf-893b-394b8fb78dbd
path: VideoStimulusSet/exp_gratingsAdap_s3_25.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-11T19:25:08.848397-05:00'
id: urn:uuid:c204b05b-819b-458e-bc35-d1bfd754de33
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-11T19:25:08.848397-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:24:37.805485-05:00'
contentSize: 368432
contentUrl:
- https://api.dandiarchive.org/api/assets/1e894c36-d8e1-4dfb-b124-e335ae5b2e22/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000805/blobs/3ae/a9a/3aea9a96-6686-4761-b904-9654bda4ffd4
dateModified: '2024-01-11T19:25:09.366738-05:00'
digest:
dandi:dandi-etag: 8f4eb119baf66c996b624dd5bf72a0ce-1
dandi:sha2-256: 61ba53bcd0ecf36dc89f793abb991ea50b930c4199e0f9550d235658dce1710e
encodingFormat: video/mp4
id: dandiasset:1e894c36-d8e1-4dfb-b124-e335ae5b2e22
identifier: 1e894c36-d8e1-4dfb-b124-e335ae5b2e22
path: VideoStimulusSet/exp_gratingsAdap_s3_27.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-11T19:25:09.366693-05:00'
id: urn:uuid:f883ef51-ea79-46ac-8c33-f06693677058
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-11T19:25:09.366693-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:24:37.816485-05:00'
contentSize: 363894
contentUrl:
- https://api.dandiarchive.org/api/assets/0f368baa-f3bd-4b5a-9693-7508f61518fd/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000805/blobs/dde/ba6/ddeba6da-a002-445c-8e32-086d2f6ca6fa
dateModified: '2024-01-11T19:25:10.669353-05:00'
digest:
dandi:dandi-etag: f2b2602d9007e38175e273ab76e4b663-1
dandi:sha2-256: f9d3d40a6d5de1d887f40a906e8ed55a456c429b792fd36d632128b2cf2d143c
encodingFormat: video/mp4
id: dandiasset:0f368baa-f3bd-4b5a-9693-7508f61518fd
identifier: 0f368baa-f3bd-4b5a-9693-7508f61518fd
path: VideoStimulusSet/exp_gratingsAdap_s3_28.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-11T19:25:10.669321-05:00'
id: urn:uuid:618d9355-f0f3-4bab-b968-c4bea9ccbc5b
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-11T19:25:10.669321-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:24:37.827485-05:00'
contentSize: 370734
contentUrl:
- https://api.dandiarchive.org/api/assets/8d0e1ba8-f85c-4894-be48-cfcd2b869692/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000805/blobs/4cd/ad8/4cdad84b-d712-41dd-8c14-a1b7fd801202
dateModified: '2024-01-11T19:25:11.210268-05:00'
digest:
dandi:dandi-etag: 4508ebd0d1a5e33b8cfecb45caeb3d1e-1
dandi:sha2-256: 26b915ed3f27b17b4203dcca82947a45d7f2cd580661ce21ae5315ded766a765
encodingFormat: video/mp4
id: dandiasset:8d0e1ba8-f85c-4894-be48-cfcd2b869692
identifier: 8d0e1ba8-f85c-4894-be48-cfcd2b869692
path: VideoStimulusSet/exp_gratingsAdap_s3_29.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-11T19:25:11.210227-05:00'
id: urn:uuid:1cfa3855-b730-41db-a20a-fa2657923458
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-11T19:25:11.210227-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:24:37.873485-05:00'
contentSize: 366909
contentUrl:
- https://api.dandiarchive.org/api/assets/f477c582-bebe-4452-9917-3a95fdf0240e/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000805/blobs/41f/6b8/41f6b80f-f28f-4d85-abe1-5be2747cf010
dateModified: '2024-01-11T19:25:12.968488-05:00'
digest:
dandi:dandi-etag: d0a852a76d9dbb61756e4513144bb912-1
dandi:sha2-256: 0d422e7e2ef573e51a94f5e03e48252c7b41b05bd997a7f89fb0c168fb3886d2
encodingFormat: video/mp4
id: dandiasset:f477c582-bebe-4452-9917-3a95fdf0240e
identifier: f477c582-bebe-4452-9917-3a95fdf0240e
path: VideoStimulusSet/exp_gratingsAdap_s3_3.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-11T19:25:12.968448-05:00'
id: urn:uuid:d75ed8b7-110c-4cbb-a8f9-9517c7ab16e7
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-11T19:25:12.968448-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:24:37.922485-05:00'
contentSize: 371643
contentUrl:
- https://api.dandiarchive.org/api/assets/e2e4d750-374f-437f-9893-2067c41deca5/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000805/blobs/a76/4d3/a764d3e1-249a-44b5-bbe9-009465521317
dateModified: '2024-01-11T19:25:13.155138-05:00'
digest:
dandi:dandi-etag: 0f19fd21a950bc2836f2c06948e71830-1
dandi:sha2-256: 19db00ffffb872c4db48aebeeb4c12b491f76f665019309c18090670b5779dc2
encodingFormat: video/mp4
id: dandiasset:e2e4d750-374f-437f-9893-2067c41deca5
identifier: e2e4d750-374f-437f-9893-2067c41deca5
path: VideoStimulusSet/exp_gratingsAdap_s3_30.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-11T19:25:13.155105-05:00'
id: urn:uuid:77cbbfb5-fb28-45a8-9109-ce0d0a8cc5b7
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-11T19:25:13.155105-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:24:37.939485-05:00'
contentSize: 360161
contentUrl:
- https://api.dandiarchive.org/api/assets/1bb7730c-32f4-4e8b-a4d1-916a38827910/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000805/blobs/e73/2d7/e732d7d9-a9fa-4c43-97af-e42fc6fb6899
dateModified: '2024-01-11T19:25:13.870876-05:00'
digest:
dandi:dandi-etag: 5edb7a1f6b3f9b3e72c08c86fb688741-1
dandi:sha2-256: cc94d1c9661e647143518f6e3ab6ab0a26598ad793c2787a8bf1c1b8853e7455
encodingFormat: video/mp4
id: dandiasset:1bb7730c-32f4-4e8b-a4d1-916a38827910
identifier: 1bb7730c-32f4-4e8b-a4d1-916a38827910
path: VideoStimulusSet/exp_gratingsAdap_s3_31.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-11T19:25:13.870842-05:00'
id: urn:uuid:a14d52b0-fb4a-451c-b394-ac85bbd055af
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-11T19:25:13.870842-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:24:37.966485-05:00'
contentSize: 368826
contentUrl:
- https://api.dandiarchive.org/api/assets/5abebbfd-21b7-49ba-9f82-abc7a9b23ff4/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000805/blobs/e3b/d0b/e3bd0b1c-b0b3-4e86-b6b5-12321f564250
dateModified: '2024-01-11T19:25:14.995071-05:00'
digest:
dandi:dandi-etag: 096a1fa7f5ad40dde83272cc1a4cd749-1
dandi:sha2-256: 79ed0d06f27458b826f3a0d86a9952d93bca593516414a7e89e9a8cba6181ad8
encodingFormat: video/mp4
id: dandiasset:5abebbfd-21b7-49ba-9f82-abc7a9b23ff4
identifier: 5abebbfd-21b7-49ba-9f82-abc7a9b23ff4
path: VideoStimulusSet/exp_gratingsAdap_s3_32.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-11T19:25:14.995015-05:00'
id: urn:uuid:97e0cf56-c3af-47e5-8642-193a8c86c27f
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-11T19:25:14.995015-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:24:37.977484-05:00'
contentSize: 364066
contentUrl:
- https://api.dandiarchive.org/api/assets/15f3c711-a1bf-476b-a3fb-2533486a659b/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000805/blobs/7ba/e8a/7bae8ae1-9fb7-4b5e-901c-609cc2403bc3
dateModified: '2024-01-11T19:25:15.058376-05:00'
digest:
dandi:dandi-etag: bf762387841b5bb6c4cfba998549abfa-1
dandi:sha2-256: daa1187335208ee94377a21b0a8ef7b8cb0ff60757b9b8ecd7cc62c4c92aad6a
encodingFormat: video/mp4
id: dandiasset:15f3c711-a1bf-476b-a3fb-2533486a659b
identifier: 15f3c711-a1bf-476b-a3fb-2533486a659b
path: VideoStimulusSet/exp_gratingsAdap_s3_33.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-11T19:25:15.058345-05:00'
id: urn:uuid:49fa9db6-89a6-4180-8420-81fcb393c677
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-11T19:25:15.058345-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:24:38.028485-05:00'
contentSize: 369888
contentUrl:
- https://api.dandiarchive.org/api/assets/d07a8ddd-f651-4db3-b794-c06f18b597f8/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000805/blobs/3c1/4da/3c14da78-04db-4cff-b82d-0c66cf9de5b9
dateModified: '2024-01-11T19:25:17.579697-05:00'
digest:
dandi:dandi-etag: 6d843476fd92be0b13b70a526c25967b-1
dandi:sha2-256: 84a94035437f28ff93318d94dba5a1769f9b06828d8fff5bcbf73fc7431a2bb3
encodingFormat: video/mp4
id: dandiasset:d07a8ddd-f651-4db3-b794-c06f18b597f8
identifier: d07a8ddd-f651-4db3-b794-c06f18b597f8
path: VideoStimulusSet/exp_gratingsAdap_s3_35.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-11T19:25:17.579652-05:00'
id: urn:uuid:dce1c5a4-9a06-4798-b80a-2a1d467ff482
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-11T19:25:17.579652-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:24:37.997485-05:00'
contentSize: 362272
contentUrl:
- https://api.dandiarchive.org/api/assets/04674e73-e4d1-4179-880c-df6f2ed2ec06/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000805/blobs/dde/c65/ddec65bd-b9ab-4dec-a19b-60d7d9b91923
dateModified: '2024-01-11T19:25:17.299360-05:00'
digest:
dandi:dandi-etag: 9cd01ac8c9e967f1c4f1f3e2220c45cf-1
dandi:sha2-256: 2a74938aed32e5d774bd16350122e792cbe733c3ba086bbff42a146498aa45f4
encodingFormat: video/mp4
id: dandiasset:04674e73-e4d1-4179-880c-df6f2ed2ec06
identifier: 04674e73-e4d1-4179-880c-df6f2ed2ec06
path: VideoStimulusSet/exp_gratingsAdap_s3_34.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-11T19:25:17.299225-05:00'
id: urn:uuid:43d04d8d-ee6d-4985-87c2-99cc466fb9a0
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-11T19:25:17.299225-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:24:38.039485-05:00'
contentSize: 364298
contentUrl:
- https://api.dandiarchive.org/api/assets/8342019c-73c1-4ae2-bdc8-77f44e7b464a/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000805/blobs/991/211/991211aa-1949-42ce-a3c8-a637b91f1300
dateModified: '2024-01-11T19:25:17.939440-05:00'
digest:
dandi:dandi-etag: f7e62b04b164919519a260487238da0a-1
dandi:sha2-256: 6cd592c3fb136eac823f5989b7c56f3d486ad02b574e134a0ad0806e2fbd542a
encodingFormat: video/mp4
id: dandiasset:8342019c-73c1-4ae2-bdc8-77f44e7b464a
identifier: 8342019c-73c1-4ae2-bdc8-77f44e7b464a
path: VideoStimulusSet/exp_gratingsAdap_s3_36.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-11T19:25:17.939410-05:00'
id: urn:uuid:9edfc00c-09d0-4635-9e35-f8e9ce3a3a27
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-11T19:25:17.939410-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:24:38.053485-05:00'
contentSize: 366282
contentUrl:
- https://api.dandiarchive.org/api/assets/02b63afe-1e42-4d28-95da-8bc5ebc6f32f/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000805/blobs/ccb/be6/ccbbe6a7-4277-4210-8334-5d7090514a00
dateModified: '2024-01-11T19:25:19.039798-05:00'
digest:
dandi:dandi-etag: ba8c42a2eda9749f6095c3318c641152-1
dandi:sha2-256: 892fb4f0bd079dd17f96eaadacb712033301cb44352ae03589bc9b0a71a06f3d
encodingFormat: video/mp4
id: dandiasset:02b63afe-1e42-4d28-95da-8bc5ebc6f32f
identifier: 02b63afe-1e42-4d28-95da-8bc5ebc6f32f
path: VideoStimulusSet/exp_gratingsAdap_s3_37.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-11T19:25:19.039771-05:00'
id: urn:uuid:ad8439ab-ebc1-4da1-bde7-def610c3275b
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-11T19:25:19.039771-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:24:38.064485-05:00'
contentSize: 370648
contentUrl:
- https://api.dandiarchive.org/api/assets/9262f7c4-54b2-4327-aff5-277f9818cd79/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000805/blobs/3c6/5bc/3c65bcef-9836-4605-9679-07169f903050
dateModified: '2024-01-11T19:25:19.091803-05:00'
digest:
dandi:dandi-etag: 5bfab806054e72aa8c33fe8a83e36793-1
dandi:sha2-256: 9972119d33035b84d0fe5d24a8df8a31f8d0e35971b34275c737ce98bae34d74
encodingFormat: video/mp4
id: dandiasset:9262f7c4-54b2-4327-aff5-277f9818cd79
identifier: 9262f7c4-54b2-4327-aff5-277f9818cd79
path: VideoStimulusSet/exp_gratingsAdap_s3_38.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-11T19:25:19.091750-05:00'
id: urn:uuid:31f7afb2-894b-46ce-97af-14e820cbb13a
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-11T19:25:19.091750-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:24:38.090485-05:00'
contentSize: 371220
contentUrl:
- https://api.dandiarchive.org/api/assets/6e14d87d-33ba-422f-90f8-5762e4ce7192/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000805/blobs/4db/eda/4dbedad8-99f0-4247-ba2a-ce04a3cee5ec
dateModified: '2024-01-11T19:25:21.102690-05:00'
digest:
dandi:dandi-etag: 9ab0809c733cc5e9e726583125516658-1
dandi:sha2-256: 912a18013cccf3a707b73c11a9334a5cf31534d725cc59beaa723dfd89e7cdb2
encodingFormat: video/mp4
id: dandiasset:6e14d87d-33ba-422f-90f8-5762e4ce7192
identifier: 6e14d87d-33ba-422f-90f8-5762e4ce7192
path: VideoStimulusSet/exp_gratingsAdap_s3_39.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-11T19:25:21.102627-05:00'
id: urn:uuid:abbbc258-5db9-444a-836c-18f981e452a8
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-11T19:25:21.102627-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:24:38.100485-05:00'
contentSize: 362332
contentUrl:
- https://api.dandiarchive.org/api/assets/25a8920e-67da-4276-a455-75c5b1089dad/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000805/blobs/3d1/c5a/3d1c5af0-0b05-4e21-8595-629220f4f8e0
dateModified: '2024-01-11T19:25:22.179455-05:00'
digest:
dandi:dandi-etag: 9da3c051c101929fcaf5b96187d12d7a-1
dandi:sha2-256: 93418ad75c78b652a41dc4eda305345803af154ac4ac2d424bed4099adef90ca
encodingFormat: video/mp4
id: dandiasset:25a8920e-67da-4276-a455-75c5b1089dad
identifier: 25a8920e-67da-4276-a455-75c5b1089dad
path: VideoStimulusSet/exp_gratingsAdap_s3_4.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-11T19:25:22.179417-05:00'
id: urn:uuid:1c2ed3a6-352d-4c41-a822-fc83e696f56b
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-11T19:25:22.179417-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:24:38.123485-05:00'
contentSize: 364908
contentUrl:
- https://api.dandiarchive.org/api/assets/82d577ea-5e67-43e5-ace5-ca9d7de31b4d/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000805/blobs/124/9d0/1249d00e-4c8d-4a66-869d-292e7a1d1f3c
dateModified: '2024-01-11T19:25:22.388769-05:00'
digest:
dandi:dandi-etag: b614d1e07bc8e4bbaab4e085a516e6a1-1
dandi:sha2-256: 7aac473f3847c0ddc0a3dee8fb683099e96e5e4493df4188a5a6f1e1d7492673
encodingFormat: video/mp4
id: dandiasset:82d577ea-5e67-43e5-ace5-ca9d7de31b4d
identifier: 82d577ea-5e67-43e5-ace5-ca9d7de31b4d
path: VideoStimulusSet/exp_gratingsAdap_s3_5.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-11T19:25:22.388717-05:00'
id: urn:uuid:adf4a48a-11a5-4b8b-88ff-a601bf7474d0
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-11T19:25:22.388717-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:24:38.147485-05:00'
contentSize: 362461
contentUrl:
- https://api.dandiarchive.org/api/assets/3fca33b4-b34d-4eec-a8dc-479e2e57ffaa/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000805/blobs/c04/97e/c0497e8f-2def-457e-a377-ad24d2cccfff
dateModified: '2024-01-11T19:25:22.864439-05:00'
digest:
dandi:dandi-etag: 297133597d16fca67775069d58bd61f5-1
dandi:sha2-256: a26a0becf6be3f5f25a8ea8f767a343d61e452a26c4a3693bb9d9681160e8780
encodingFormat: video/mp4
id: dandiasset:3fca33b4-b34d-4eec-a8dc-479e2e57ffaa
identifier: 3fca33b4-b34d-4eec-a8dc-479e2e57ffaa
path: VideoStimulusSet/exp_gratingsAdap_s3_6.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-11T19:25:22.864389-05:00'
id: urn:uuid:aac39e51-51f3-40c5-a12b-0f869b858ff9
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-11T19:25:22.864389-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:24:38.191484-05:00'
contentSize: 374898
contentUrl:
- https://api.dandiarchive.org/api/assets/281de76f-627b-4707-b921-26c032665cf1/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000805/blobs/d80/d6b/d80d6b62-d59e-4a95-ae52-44ee44fe1769
dateModified: '2024-01-11T19:25:23.272899-05:00'
digest:
dandi:dandi-etag: 32f987402616dd22c68db803668dcc45-1
dandi:sha2-256: aa9ad6746a19dde9c7342b4d776018d01de39fd1e53754ecdfb2d3581c194ca2
encodingFormat: video/mp4
id: dandiasset:281de76f-627b-4707-b921-26c032665cf1
identifier: 281de76f-627b-4707-b921-26c032665cf1
path: VideoStimulusSet/exp_gratingsAdap_s3_7.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-11T19:25:23.272852-05:00'
id: urn:uuid:424cd2a0-9674-4029-aec3-702994372fdd
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-11T19:25:23.272852-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:24:38.202485-05:00'
contentSize: 373961
contentUrl:
- https://api.dandiarchive.org/api/assets/31d7fccc-2a49-4609-b32e-91fbd9b6dc17/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000805/blobs/b41/c65/b41c65fb-739a-4716-993f-42e4d28e5623
dateModified: '2024-01-11T19:25:24.540689-05:00'
digest:
dandi:dandi-etag: 6198cb3c8960400f5da0f0e5f688e446-1
dandi:sha2-256: cf3ec2098f0bb8bb8fd328c07195f321aa816b4245cc8de918b5cb0d152f0a91
encodingFormat: video/mp4
id: dandiasset:31d7fccc-2a49-4609-b32e-91fbd9b6dc17
identifier: 31d7fccc-2a49-4609-b32e-91fbd9b6dc17
path: VideoStimulusSet/exp_gratingsAdap_s3_8.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-11T19:25:24.540486-05:00'
id: urn:uuid:c5903023-05a9-4728-981a-df9a28ae70c6
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-11T19:25:24.540486-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:24:38.229485-05:00'
contentSize: 367988
contentUrl:
- https://api.dandiarchive.org/api/assets/3cf7b2f7-902e-45ad-bc35-a79295f3e85b/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000805/blobs/168/275/1682752d-4b02-47e5-b3d8-4ea5c76d3512
dateModified: '2024-01-11T19:25:25.621891-05:00'
digest:
dandi:dandi-etag: 23689bc8e3ab2c1a56aa428e21ea890c-1
dandi:sha2-256: 34f643cbefdebeaaf4ad972c165fbb4c812c3372d60b17a1b936adadbbb7dbab
encodingFormat: video/mp4
id: dandiasset:3cf7b2f7-902e-45ad-bc35-a79295f3e85b
identifier: 3cf7b2f7-902e-45ad-bc35-a79295f3e85b
path: VideoStimulusSet/exp_gratingsAdap_s3_9.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-11T19:25:25.621849-05:00'
id: urn:uuid:560a732e-364d-4f80-bd1e-d089f577d5ab
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-11T19:25:25.621849-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.565066-04:00'
contentSize: 192119384
contentUrl:
- https://api.dandiarchive.org/api/assets/2a1ef55d-ec16-49ae-b0d5-a6212b18138c/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000805/blobs/b86/a2e/b86a2e7f-e132-4acd-a28b-ea24749ece0d
dateModified: '2024-04-21T13:31:47.391572-04:00'
digest:
dandi:dandi-etag: c225ccb3ddc364c58fb7bfd4c8829ac3-3
dandi:sha2-256: 4cca84624e3a5d9934babd0ac6cab4c27a0f8fd2aee7eba693cb552073da19cd
encodingFormat: application/x-nwb
id: dandiasset:2a1ef55d-ec16-49ae-b0d5-a6212b18138c
identifier: 2a1ef55d-ec16-49ae-b0d5-a6212b18138c
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:31:47.391504-04:00'
id: urn:uuid:e78dde5e-7bc8-4928-b98c-ee0a9254ece1
name: Metadata generation
schemaKey: Activity
startDate: '2024-04-21T13:31:47.381479-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