Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

assets.yaml 66 KB

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
  1. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2. access:
  3. - schemaKey: AccessRequirements
  4. status: dandi:OpenAccess
  5. blobDateModified: '2023-12-11T16:10:18.991389-05:00'
  6. contentSize: 480
  7. contentUrl:
  8. - https://api.dandiarchive.org/api/assets/9b32a049-b91e-4d05-98e8-e2242ad66296/download/
  9. - https://dandiarchive-embargo.s3.amazonaws.com/000729/blobs/f6d/e78/f6de788e-c0ae-45e2-ad66-c7e4e23cb063
  10. dateModified: '2023-12-13T16:09:49.669324-05:00'
  11. digest:
  12. dandi:dandi-etag: 0a64e382b8f07a3c6e0c0d3b4f022dbb-1
  13. dandi:sha2-256: cb078a0cd53fb04a57d6bafe5d29b5d09b4a0486c8d9b2fc2a13b60df236fe6e
  14. encodingFormat: application/json
  15. id: dandiasset:9b32a049-b91e-4d05-98e8-e2242ad66296
  16. identifier: 9b32a049-b91e-4d05-98e8-e2242ad66296
  17. path: derivatives/DWIprep_V.1.0/dataset_description.json
  18. schemaKey: Asset
  19. schemaVersion: 0.6.4
  20. wasGeneratedBy:
  21. - description: Metadata generated by DANDI cli
  22. endDate: '2023-12-13T16:09:48.664029-05:00'
  23. id: urn:uuid:29e2dd37-d825-40a6-8300-ab5a20304271
  24. name: Metadata generation
  25. schemaKey: Activity
  26. startDate: '2023-12-13T16:09:48.664029-05:00'
  27. wasAssociatedWith:
  28. - identifier: RRID:SCR_019009
  29. name: DANDI Command Line Interface
  30. schemaKey: Software
  31. url: https://github.com/dandi/dandi-cli
  32. version: 0.58.1
  33. - description: Metadata generated by DANDI cli
  34. endDate: '2023-12-13T16:09:49.669287-05:00'
  35. id: urn:uuid:426f7834-e16a-4686-a2ef-60bd11659baa
  36. name: Metadata generation
  37. schemaKey: Activity
  38. startDate: '2023-12-13T16:09:49.669287-05:00'
  39. wasAssociatedWith:
  40. - identifier: RRID:SCR_019009
  41. name: DANDI Command Line Interface
  42. schemaKey: Software
  43. url: https://github.com/dandi/dandi-cli
  44. version: 0.58.1
  45. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  46. access:
  47. - schemaKey: AccessRequirements
  48. status: dandi:OpenAccess
  49. blobDateModified: '2023-12-12T14:51:53.680171-05:00'
  50. contentSize: 8671
  51. contentUrl:
  52. - https://api.dandiarchive.org/api/assets/48da9b03-93d9-4d05-b439-8660185f4111/download/
  53. - https://dandiarchive-embargo.s3.amazonaws.com/000729/blobs/0a1/f31/0a1f31de-6dcf-4293-9092-a2c510070432
  54. dateModified: '2023-12-13T16:09:49.978786-05:00'
  55. digest:
  56. dandi:dandi-etag: e6880e07daecca688225da5346abb061-1
  57. dandi:sha2-256: 49edc083a4fc5b7ba3ab97b2f086fe9a71cb03708cd1ce84bdc0039ae210ce72
  58. encodingFormat: application/octet-stream
  59. id: dandiasset:48da9b03-93d9-4d05-b439-8660185f4111
  60. identifier: 48da9b03-93d9-4d05-b439-8660185f4111
  61. path: derivatives/DWIprep_V.1.0/sub-243/sub-243_dwi-prep.bval
  62. schemaKey: Asset
  63. schemaVersion: 0.6.4
  64. wasGeneratedBy:
  65. - description: Metadata generated by DANDI cli
  66. endDate: '2023-12-13T16:09:48.665611-05:00'
  67. id: urn:uuid:05ab3371-14ad-4fd4-9636-cd84ba24c36e
  68. name: Metadata generation
  69. schemaKey: Activity
  70. startDate: '2023-12-13T16:09:48.665611-05:00'
  71. wasAssociatedWith:
  72. - identifier: RRID:SCR_019009
  73. name: DANDI Command Line Interface
  74. schemaKey: Software
  75. url: https://github.com/dandi/dandi-cli
  76. version: 0.58.1
  77. - description: Metadata generated by DANDI cli
  78. endDate: '2023-12-13T16:09:49.978757-05:00'
  79. id: urn:uuid:a1de8c92-8a53-4ba9-8f03-f98614f015d2
  80. name: Metadata generation
  81. schemaKey: Activity
  82. startDate: '2023-12-13T16:09:49.978757-05:00'
  83. wasAssociatedWith:
  84. - identifier: RRID:SCR_019009
  85. name: DANDI Command Line Interface
  86. schemaKey: Software
  87. url: https://github.com/dandi/dandi-cli
  88. version: 0.58.1
  89. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  90. access:
  91. - schemaKey: AccessRequirements
  92. status: dandi:OpenAccess
  93. blobDateModified: '2023-12-11T15:47:23.711082-05:00'
  94. contentSize: 99
  95. contentUrl:
  96. - https://api.dandiarchive.org/api/assets/e7b4f76e-0ed2-415c-94bc-b1a4f19fe5b5/download/
  97. - https://dandiarchive-embargo.s3.amazonaws.com/000729/blobs/779/bda/779bda67-a9b1-40c9-bb86-b150e85ce2f2
  98. dateModified: '2023-12-13T16:09:49.920552-05:00'
  99. digest:
  100. dandi:dandi-etag: 4abb3eaeb6d49e4f77468768cdb207d6-1
  101. dandi:sha2-256: add9d97ffb002f64955399ef47ea1ebf9c7d9f910071b989d81a548e1fdae015
  102. encodingFormat: application/json
  103. id: dandiasset:e7b4f76e-0ed2-415c-94bc-b1a4f19fe5b5
  104. identifier: e7b4f76e-0ed2-415c-94bc-b1a4f19fe5b5
  105. path: dataset_description.json
  106. schemaKey: Asset
  107. schemaVersion: 0.6.4
  108. wasGeneratedBy:
  109. - description: Metadata generated by DANDI cli
  110. endDate: '2023-12-13T16:09:49.920526-05:00'
  111. id: urn:uuid:6a241d10-c6e3-4fd4-a67f-aaa3e5ff0795
  112. name: Metadata generation
  113. schemaKey: Activity
  114. startDate: '2023-12-13T16:09:49.920526-05:00'
  115. wasAssociatedWith:
  116. - identifier: RRID:SCR_019009
  117. name: DANDI Command Line Interface
  118. schemaKey: Software
  119. url: https://github.com/dandi/dandi-cli
  120. version: 0.58.1
  121. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  122. access:
  123. - schemaKey: AccessRequirements
  124. status: dandi:OpenAccess
  125. blobDateModified: '2023-12-12T14:50:32.174437-05:00'
  126. contentSize: 20736
  127. contentUrl:
  128. - https://api.dandiarchive.org/api/assets/e0c2a366-ed40-4144-be49-a0954378a83c/download/
  129. - https://dandiarchive-embargo.s3.amazonaws.com/000729/blobs/7f8/203/7f820356-2eaf-4e7a-8a3a-0de3c26850e2
  130. dateModified: '2023-12-13T16:09:49.865227-05:00'
  131. digest:
  132. dandi:dandi-etag: 2b568aa3996cd684af13f40435188809-1
  133. dandi:sha2-256: 3bbaff959697388b5b65e14be8e69d5bf6fb9a7ee74b6961a20c316702bdb53f
  134. encodingFormat: application/octet-stream
  135. id: dandiasset:e0c2a366-ed40-4144-be49-a0954378a83c
  136. identifier: e0c2a366-ed40-4144-be49-a0954378a83c
  137. path: derivatives/DWIprep_V.1.0/sub-243/sub-243_dwi-prep.bvec
  138. schemaKey: Asset
  139. schemaVersion: 0.6.4
  140. wasGeneratedBy:
  141. - description: Metadata generated by DANDI cli
  142. endDate: '2023-12-13T16:09:48.666771-05:00'
  143. id: urn:uuid:b23be5fe-6a3c-4bb3-8c97-05453bee51ef
  144. name: Metadata generation
  145. schemaKey: Activity
  146. startDate: '2023-12-13T16:09:48.666771-05:00'
  147. wasAssociatedWith:
  148. - identifier: RRID:SCR_019009
  149. name: DANDI Command Line Interface
  150. schemaKey: Software
  151. url: https://github.com/dandi/dandi-cli
  152. version: 0.58.1
  153. - description: Metadata generated by DANDI cli
  154. endDate: '2023-12-13T16:09:49.865192-05:00'
  155. id: urn:uuid:c40b3c00-7bfc-4b5d-af4b-9f322be2f4de
  156. name: Metadata generation
  157. schemaKey: Activity
  158. startDate: '2023-12-13T16:09:49.865192-05:00'
  159. wasAssociatedWith:
  160. - identifier: RRID:SCR_019009
  161. name: DANDI Command Line Interface
  162. schemaKey: Software
  163. url: https://github.com/dandi/dandi-cli
  164. version: 0.58.1
  165. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  166. access:
  167. - schemaKey: AccessRequirements
  168. status: dandi:OpenAccess
  169. blobDateModified: '2023-12-12T14:52:15.967646-05:00'
  170. contentSize: 3065
  171. contentUrl:
  172. - https://api.dandiarchive.org/api/assets/6625d5e4-919b-470b-a819-f89805854793/download/
  173. - https://dandiarchive-embargo.s3.amazonaws.com/000729/blobs/1d6/204/1d62048e-0ab2-4225-a632-c95779466999
  174. dateModified: '2023-12-13T16:09:53.157591-05:00'
  175. digest:
  176. dandi:dandi-etag: 8062eecfd749ab9160635fa0afeb08b5-1
  177. dandi:sha2-256: 4f153eeb779dd0c1094abe752956579f1732d99ab623fcaade604d26cd3ee701
  178. encodingFormat: application/octet-stream
  179. id: dandiasset:6625d5e4-919b-470b-a819-f89805854793
  180. identifier: 6625d5e4-919b-470b-a819-f89805854793
  181. path: derivatives/DWIprep_V.1.0/sub-243/sub-243_dwi-prephcpl.bval
  182. schemaKey: Asset
  183. schemaVersion: 0.6.4
  184. wasGeneratedBy:
  185. - description: Metadata generated by DANDI cli
  186. endDate: '2023-12-13T16:09:51.712853-05:00'
  187. id: urn:uuid:c34d85e9-086d-43e5-b262-43891f545248
  188. name: Metadata generation
  189. schemaKey: Activity
  190. startDate: '2023-12-13T16:09:51.712853-05:00'
  191. wasAssociatedWith:
  192. - identifier: RRID:SCR_019009
  193. name: DANDI Command Line Interface
  194. schemaKey: Software
  195. url: https://github.com/dandi/dandi-cli
  196. version: 0.58.1
  197. - description: Metadata generated by DANDI cli
  198. endDate: '2023-12-13T16:09:53.157566-05:00'
  199. id: urn:uuid:bf6bc9b5-10b9-4ce8-a1ef-c0e356a6d37c
  200. name: Metadata generation
  201. schemaKey: Activity
  202. startDate: '2023-12-13T16:09:53.157566-05:00'
  203. wasAssociatedWith:
  204. - identifier: RRID:SCR_019009
  205. name: DANDI Command Line Interface
  206. schemaKey: Software
  207. url: https://github.com/dandi/dandi-cli
  208. version: 0.58.1
  209. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  210. access:
  211. - schemaKey: AccessRequirements
  212. status: dandi:OpenAccess
  213. blobDateModified: '2023-12-12T14:52:31.715981-05:00'
  214. contentSize: 7518
  215. contentUrl:
  216. - https://api.dandiarchive.org/api/assets/3f002896-123d-4995-8264-95a025b5627f/download/
  217. - https://dandiarchive-embargo.s3.amazonaws.com/000729/blobs/be7/61b/be761b90-3039-4a22-895b-a3616d8c275f
  218. dateModified: '2023-12-13T16:09:53.776999-05:00'
  219. digest:
  220. dandi:dandi-etag: 8814e96417b89722b8ce5107681695f7-1
  221. dandi:sha2-256: 513a222044a1b577098dc2a8444b6466ee8f7c19e5576aef8d37074bb027bd00
  222. encodingFormat: application/octet-stream
  223. id: dandiasset:3f002896-123d-4995-8264-95a025b5627f
  224. identifier: 3f002896-123d-4995-8264-95a025b5627f
  225. path: derivatives/DWIprep_V.1.0/sub-243/sub-243_dwi-prephcpl.bvec
  226. schemaKey: Asset
  227. schemaVersion: 0.6.4
  228. wasGeneratedBy:
  229. - description: Metadata generated by DANDI cli
  230. endDate: '2023-12-13T16:09:52.650181-05:00'
  231. id: urn:uuid:24720ba8-9433-4212-a2fd-e113e945cba1
  232. name: Metadata generation
  233. schemaKey: Activity
  234. startDate: '2023-12-13T16:09:52.650181-05:00'
  235. wasAssociatedWith:
  236. - identifier: RRID:SCR_019009
  237. name: DANDI Command Line Interface
  238. schemaKey: Software
  239. url: https://github.com/dandi/dandi-cli
  240. version: 0.58.1
  241. - description: Metadata generated by DANDI cli
  242. endDate: '2023-12-13T16:09:53.776962-05:00'
  243. id: urn:uuid:cef976b2-de08-406b-b3dc-21f268b7ab33
  244. name: Metadata generation
  245. schemaKey: Activity
  246. startDate: '2023-12-13T16:09:53.776962-05:00'
  247. wasAssociatedWith:
  248. - identifier: RRID:SCR_019009
  249. name: DANDI Command Line Interface
  250. schemaKey: Software
  251. url: https://github.com/dandi/dandi-cli
  252. version: 0.58.1
  253. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  254. access:
  255. - schemaKey: AccessRequirements
  256. status: dandi:OpenAccess
  257. blobDateModified: '2023-12-12T14:34:56.820454-05:00'
  258. contentSize: 3066
  259. contentUrl:
  260. - https://api.dandiarchive.org/api/assets/96cbad0b-73fa-492f-b53a-bbe8a42f88fa/download/
  261. - https://dandiarchive-embargo.s3.amazonaws.com/000729/blobs/c37/6ec/c376ec4a-d22b-4824-9730-32cfa97c1a17
  262. dateModified: '2023-12-13T16:09:53.846754-05:00'
  263. digest:
  264. dandi:dandi-etag: d3a118f76bbfb91f4fd34df346a53241-1
  265. dandi:sha2-256: bb9f58c033835dd08b2d76c0bcc076881d2bcf5a8a6cd91e9214389c4dd20496
  266. encodingFormat: application/octet-stream
  267. id: dandiasset:96cbad0b-73fa-492f-b53a-bbe8a42f88fa
  268. identifier: 96cbad0b-73fa-492f-b53a-bbe8a42f88fa
  269. path: derivatives/DWIprep_V.1.0/sub-243/sub-243_dwihcpl.bval
  270. schemaKey: Asset
  271. schemaVersion: 0.6.4
  272. wasGeneratedBy:
  273. - description: Metadata generated by DANDI cli
  274. endDate: '2023-12-13T16:09:52.744632-05:00'
  275. id: urn:uuid:d504f0be-38f4-4e06-a166-fecf6b3ed76e
  276. name: Metadata generation
  277. schemaKey: Activity
  278. startDate: '2023-12-13T16:09:52.744632-05:00'
  279. wasAssociatedWith:
  280. - identifier: RRID:SCR_019009
  281. name: DANDI Command Line Interface
  282. schemaKey: Software
  283. url: https://github.com/dandi/dandi-cli
  284. version: 0.58.1
  285. - description: Metadata generated by DANDI cli
  286. endDate: '2023-12-13T16:09:53.846717-05:00'
  287. id: urn:uuid:82ce2f10-ef08-46cb-b202-109feafa2fe3
  288. name: Metadata generation
  289. schemaKey: Activity
  290. startDate: '2023-12-13T16:09:53.846717-05:00'
  291. wasAssociatedWith:
  292. - identifier: RRID:SCR_019009
  293. name: DANDI Command Line Interface
  294. schemaKey: Software
  295. url: https://github.com/dandi/dandi-cli
  296. version: 0.58.1
  297. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  298. access:
  299. - schemaKey: AccessRequirements
  300. status: dandi:OpenAccess
  301. blobDateModified: '2023-12-12T14:34:46.458371-05:00'
  302. contentSize: 7518
  303. contentUrl:
  304. - https://api.dandiarchive.org/api/assets/051a0308-f999-4287-8697-a90c14400fbb/download/
  305. - https://dandiarchive-embargo.s3.amazonaws.com/000729/blobs/88e/fc5/88efc5f2-30e0-47fd-858f-950fe219c4bb
  306. dateModified: '2023-12-13T16:09:56.867426-05:00'
  307. digest:
  308. dandi:dandi-etag: 851ad355152709dc587467ca8ad6bff9-1
  309. dandi:sha2-256: 4e3ba0f30070d36ae777e6dd0f26e7bc890b02e688b94d65452a20f5301d9a8b
  310. encodingFormat: application/octet-stream
  311. id: dandiasset:051a0308-f999-4287-8697-a90c14400fbb
  312. identifier: 051a0308-f999-4287-8697-a90c14400fbb
  313. path: derivatives/DWIprep_V.1.0/sub-243/sub-243_dwihcpl.bvec
  314. schemaKey: Asset
  315. schemaVersion: 0.6.4
  316. wasGeneratedBy:
  317. - description: Metadata generated by DANDI cli
  318. endDate: '2023-12-13T16:09:55.919930-05:00'
  319. id: urn:uuid:55cbfe7c-1f3a-4433-84d9-f5e82bddfa10
  320. name: Metadata generation
  321. schemaKey: Activity
  322. startDate: '2023-12-13T16:09:55.919930-05:00'
  323. wasAssociatedWith:
  324. - identifier: RRID:SCR_019009
  325. name: DANDI Command Line Interface
  326. schemaKey: Software
  327. url: https://github.com/dandi/dandi-cli
  328. version: 0.58.1
  329. - description: Metadata generated by DANDI cli
  330. endDate: '2023-12-13T16:09:56.867390-05:00'
  331. id: urn:uuid:5394adc3-1c9d-43d3-89ed-038823ca00e0
  332. name: Metadata generation
  333. schemaKey: Activity
  334. startDate: '2023-12-13T16:09:56.867390-05:00'
  335. wasAssociatedWith:
  336. - identifier: RRID:SCR_019009
  337. name: DANDI Command Line Interface
  338. schemaKey: Software
  339. url: https://github.com/dandi/dandi-cli
  340. version: 0.58.1
  341. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  342. access:
  343. - schemaKey: AccessRequirements
  344. status: dandi:OpenAccess
  345. blobDateModified: '2023-12-11T18:35:48-05:00'
  346. contentSize: 18338
  347. contentUrl:
  348. - https://api.dandiarchive.org/api/assets/b42348fd-de27-4397-bc13-94235b12c369/download/
  349. - https://dandiarchive-embargo.s3.amazonaws.com/000729/blobs/566/a21/566a2172-20bb-45ff-8e2e-73535f7640ff
  350. dateModified: '2023-12-13T16:09:57.491109-05:00'
  351. digest:
  352. dandi:dandi-etag: 28f1ba7ab568e512c751489a343255e7-1
  353. dandi:sha2-256: 3cd0c6eadbdca4113253481843b0bc036f5fa7c5434b852c50e428c97047d8b3
  354. encodingFormat: application/gzip
  355. id: dandiasset:b42348fd-de27-4397-bc13-94235b12c369
  356. identifier: b42348fd-de27-4397-bc13-94235b12c369
  357. path: derivatives/DWIprep_V.1.0/sub-243/sub-243_inject.nii.gz
  358. schemaKey: Asset
  359. schemaVersion: 0.6.4
  360. wasGeneratedBy:
  361. - description: Metadata generated by DANDI cli
  362. endDate: '2023-12-13T16:09:56.725550-05:00'
  363. id: urn:uuid:425ffde6-96e0-4750-8258-34d84a9df8b7
  364. name: Metadata generation
  365. schemaKey: Activity
  366. startDate: '2023-12-13T16:09:56.725550-05:00'
  367. wasAssociatedWith:
  368. - identifier: RRID:SCR_019009
  369. name: DANDI Command Line Interface
  370. schemaKey: Software
  371. url: https://github.com/dandi/dandi-cli
  372. version: 0.58.1
  373. - description: Metadata generated by DANDI cli
  374. endDate: '2023-12-13T16:09:57.491073-05:00'
  375. id: urn:uuid:abe41868-4acb-42ae-b782-b158127ae0aa
  376. name: Metadata generation
  377. schemaKey: Activity
  378. startDate: '2023-12-13T16:09:57.491073-05:00'
  379. wasAssociatedWith:
  380. - identifier: RRID:SCR_019009
  381. name: DANDI Command Line Interface
  382. schemaKey: Software
  383. url: https://github.com/dandi/dandi-cli
  384. version: 0.58.1
  385. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  386. access:
  387. - schemaKey: AccessRequirements
  388. status: dandi:OpenAccess
  389. blobDateModified: '2023-12-13T14:26:18.335223-05:00'
  390. contentSize: 13
  391. contentUrl:
  392. - https://api.dandiarchive.org/api/assets/6c3e0331-163a-4338-991f-3aa7c28e97f3/download/
  393. - https://dandiarchive-embargo.s3.amazonaws.com/000729/blobs/e12/c71/e12c7112-4a3d-48ee-bc45-871bfb17ebdc
  394. dateModified: '2023-12-13T16:09:58.880508-05:00'
  395. digest:
  396. dandi:dandi-etag: 0509437216240f05077cec8d581a2fc8-1
  397. dandi:sha2-256: 9302336a59ceeaf89423e216c6d87c120a690c8761adb2ae76e2ef0284bc7a9b
  398. encodingFormat: application/octet-stream
  399. id: dandiasset:6c3e0331-163a-4338-991f-3aa7c28e97f3
  400. identifier: 6c3e0331-163a-4338-991f-3aa7c28e97f3
  401. path: derivatives/DWIprep_V.1.0/sub-256/acqp
  402. schemaKey: Asset
  403. schemaVersion: 0.6.4
  404. wasGeneratedBy:
  405. - description: Metadata generated by DANDI cli
  406. endDate: '2023-12-13T16:09:58.410248-05:00'
  407. id: urn:uuid:1859076a-fcb1-47fe-ad52-891ae7fb9269
  408. name: Metadata generation
  409. schemaKey: Activity
  410. startDate: '2023-12-13T16:09:58.410248-05:00'
  411. wasAssociatedWith:
  412. - identifier: RRID:SCR_019009
  413. name: DANDI Command Line Interface
  414. schemaKey: Software
  415. url: https://github.com/dandi/dandi-cli
  416. version: 0.58.1
  417. - description: Metadata generated by DANDI cli
  418. endDate: '2023-12-13T16:09:58.880473-05:00'
  419. id: urn:uuid:3a8f3fe5-76c2-4ddc-a301-55eb8b567916
  420. name: Metadata generation
  421. schemaKey: Activity
  422. startDate: '2023-12-13T16:09:58.880473-05:00'
  423. wasAssociatedWith:
  424. - identifier: RRID:SCR_019009
  425. name: DANDI Command Line Interface
  426. schemaKey: Software
  427. url: https://github.com/dandi/dandi-cli
  428. version: 0.58.1
  429. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  430. access:
  431. - schemaKey: AccessRequirements
  432. status: dandi:OpenAccess
  433. blobDateModified: '2023-12-13T14:34:37.554960-05:00'
  434. contentSize: 340
  435. contentUrl:
  436. - https://api.dandiarchive.org/api/assets/ac5bf09d-cc05-4616-9055-f3177ad2ef44/download/
  437. - https://dandiarchive-embargo.s3.amazonaws.com/000729/blobs/63d/ea3/63dea3c3-3bdd-4de0-b717-b17e27717f63
  438. dateModified: '2023-12-13T16:10:00.180917-05:00'
  439. digest:
  440. dandi:dandi-etag: 67d0246b9f4d688f630ede6495abe097-1
  441. dandi:sha2-256: f585e0d7f20d95ce6070dcb8949e826e542733f4333624b98c12b36ea64a0a0d
  442. encodingFormat: application/octet-stream
  443. id: dandiasset:ac5bf09d-cc05-4616-9055-f3177ad2ef44
  444. identifier: ac5bf09d-cc05-4616-9055-f3177ad2ef44
  445. path: derivatives/DWIprep_V.1.0/sub-256/bval
  446. schemaKey: Asset
  447. schemaVersion: 0.6.4
  448. wasGeneratedBy:
  449. - description: Metadata generated by DANDI cli
  450. endDate: '2023-12-13T16:09:59.288595-05:00'
  451. id: urn:uuid:29aeb733-b115-41d5-b215-b26aba0b4f67
  452. name: Metadata generation
  453. schemaKey: Activity
  454. startDate: '2023-12-13T16:09:59.288595-05:00'
  455. wasAssociatedWith:
  456. - identifier: RRID:SCR_019009
  457. name: DANDI Command Line Interface
  458. schemaKey: Software
  459. url: https://github.com/dandi/dandi-cli
  460. version: 0.58.1
  461. - description: Metadata generated by DANDI cli
  462. endDate: '2023-12-13T16:10:00.180880-05:00'
  463. id: urn:uuid:075b6308-fd71-423f-8a34-5e860b26cedf
  464. name: Metadata generation
  465. schemaKey: Activity
  466. startDate: '2023-12-13T16:10:00.180880-05:00'
  467. wasAssociatedWith:
  468. - identifier: RRID:SCR_019009
  469. name: DANDI Command Line Interface
  470. schemaKey: Software
  471. url: https://github.com/dandi/dandi-cli
  472. version: 0.58.1
  473. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  474. access:
  475. - schemaKey: AccessRequirements
  476. status: dandi:OpenAccess
  477. blobDateModified: '2023-12-13T14:34:37.550960-05:00'
  478. contentSize: 2938
  479. contentUrl:
  480. - https://api.dandiarchive.org/api/assets/f926cd0f-6a2e-44fd-b9b5-e37aade2fbc9/download/
  481. - https://dandiarchive-embargo.s3.amazonaws.com/000729/blobs/e5a/f0c/e5af0c47-d50b-4a9d-8bc7-10ec790e1603
  482. dateModified: '2023-12-13T16:10:00.971057-05:00'
  483. digest:
  484. dandi:dandi-etag: 021bbeed7f0143ff699017af942fb946-1
  485. dandi:sha2-256: 96e6162d53f4bdc59b35a6525d691385d2ff007ab0cca6515047ed10f626ad33
  486. encodingFormat: application/octet-stream
  487. id: dandiasset:f926cd0f-6a2e-44fd-b9b5-e37aade2fbc9
  488. identifier: f926cd0f-6a2e-44fd-b9b5-e37aade2fbc9
  489. path: derivatives/DWIprep_V.1.0/sub-256/bvec
  490. schemaKey: Asset
  491. schemaVersion: 0.6.4
  492. wasGeneratedBy:
  493. - description: Metadata generated by DANDI cli
  494. endDate: '2023-12-13T16:10:00.569625-05:00'
  495. id: urn:uuid:966049f4-9369-4c60-939c-79544fdcbe1a
  496. name: Metadata generation
  497. schemaKey: Activity
  498. startDate: '2023-12-13T16:10:00.569625-05:00'
  499. wasAssociatedWith:
  500. - identifier: RRID:SCR_019009
  501. name: DANDI Command Line Interface
  502. schemaKey: Software
  503. url: https://github.com/dandi/dandi-cli
  504. version: 0.58.1
  505. - description: Metadata generated by DANDI cli
  506. endDate: '2023-12-13T16:10:00.971026-05:00'
  507. id: urn:uuid:511dedea-a3b9-4fa1-aaa7-0271064b01cf
  508. name: Metadata generation
  509. schemaKey: Activity
  510. startDate: '2023-12-13T16:10:00.971026-05:00'
  511. wasAssociatedWith:
  512. - identifier: RRID:SCR_019009
  513. name: DANDI Command Line Interface
  514. schemaKey: Software
  515. url: https://github.com/dandi/dandi-cli
  516. version: 0.58.1
  517. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  518. access:
  519. - schemaKey: AccessRequirements
  520. status: dandi:OpenAccess
  521. blobDateModified: '2023-12-13T14:26:18.344223-05:00'
  522. contentSize: 292
  523. contentUrl:
  524. - https://api.dandiarchive.org/api/assets/48abbc3d-bf96-44a8-903e-beb35994b450/download/
  525. - https://dandiarchive-embargo.s3.amazonaws.com/000729/blobs/45f/f45/45ff4588-4f50-45bc-bb61-0694bb050786
  526. dateModified: '2023-12-13T16:10:02.072894-05:00'
  527. digest:
  528. dandi:dandi-etag: d4d9bd9af6f74a6864af1c041f527ca7-1
  529. dandi:sha2-256: 894f67f654be90a898f41b41ba9d40ef2d54b390e84aacb88c6fbab4536259bb
  530. encodingFormat: application/octet-stream
  531. id: dandiasset:48abbc3d-bf96-44a8-903e-beb35994b450
  532. identifier: 48abbc3d-bf96-44a8-903e-beb35994b450
  533. path: derivatives/DWIprep_V.1.0/sub-256/index
  534. schemaKey: Asset
  535. schemaVersion: 0.6.4
  536. wasGeneratedBy:
  537. - description: Metadata generated by DANDI cli
  538. endDate: '2023-12-13T16:10:01.592145-05:00'
  539. id: urn:uuid:321aff68-c5da-40fc-8141-7255ccc933a5
  540. name: Metadata generation
  541. schemaKey: Activity
  542. startDate: '2023-12-13T16:10:01.592145-05:00'
  543. wasAssociatedWith:
  544. - identifier: RRID:SCR_019009
  545. name: DANDI Command Line Interface
  546. schemaKey: Software
  547. url: https://github.com/dandi/dandi-cli
  548. version: 0.58.1
  549. - description: Metadata generated by DANDI cli
  550. endDate: '2023-12-13T16:10:02.072860-05:00'
  551. id: urn:uuid:e90e6fdf-10d4-4630-8143-d614a167a098
  552. name: Metadata generation
  553. schemaKey: Activity
  554. startDate: '2023-12-13T16:10:02.072860-05:00'
  555. wasAssociatedWith:
  556. - identifier: RRID:SCR_019009
  557. name: DANDI Command Line Interface
  558. schemaKey: Software
  559. url: https://github.com/dandi/dandi-cli
  560. version: 0.58.1
  561. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  562. access:
  563. - schemaKey: AccessRequirements
  564. status: dandi:OpenAccess
  565. blobDateModified: '2023-12-12T14:37:46.775056-05:00'
  566. contentSize: 8672
  567. contentUrl:
  568. - https://api.dandiarchive.org/api/assets/208193aa-3794-4028-9bd7-f6b95b79ee3b/download/
  569. - https://dandiarchive-embargo.s3.amazonaws.com/000729/blobs/767/af5/767af566-7bfc-4184-a996-02287c40ef3d
  570. dateModified: '2023-12-13T16:10:02.887228-05:00'
  571. digest:
  572. dandi:dandi-etag: 9d572ea71dbf3774bcb3c1b73653dfa5-1
  573. dandi:sha2-256: 5698368c0e6f412130bc5bdd75993ebc0f9577685e6db26a3f02fbf9f7803b6f
  574. encodingFormat: application/octet-stream
  575. id: dandiasset:208193aa-3794-4028-9bd7-f6b95b79ee3b
  576. identifier: 208193aa-3794-4028-9bd7-f6b95b79ee3b
  577. path: derivatives/DWIprep_V.1.0/sub-256/sub-256_dwi-prep.bval
  578. schemaKey: Asset
  579. schemaVersion: 0.6.4
  580. wasGeneratedBy:
  581. - description: Metadata generated by DANDI cli
  582. endDate: '2023-12-13T16:10:02.485008-05:00'
  583. id: urn:uuid:c8ca29f5-da22-4526-8661-252ff2289628
  584. name: Metadata generation
  585. schemaKey: Activity
  586. startDate: '2023-12-13T16:10:02.485008-05:00'
  587. wasAssociatedWith:
  588. - identifier: RRID:SCR_019009
  589. name: DANDI Command Line Interface
  590. schemaKey: Software
  591. url: https://github.com/dandi/dandi-cli
  592. version: 0.58.1
  593. - description: Metadata generated by DANDI cli
  594. endDate: '2023-12-13T16:10:02.887194-05:00'
  595. id: urn:uuid:420ac688-ee2e-45bb-8464-5af5aa2f22ff
  596. name: Metadata generation
  597. schemaKey: Activity
  598. startDate: '2023-12-13T16:10:02.887194-05:00'
  599. wasAssociatedWith:
  600. - identifier: RRID:SCR_019009
  601. name: DANDI Command Line Interface
  602. schemaKey: Software
  603. url: https://github.com/dandi/dandi-cli
  604. version: 0.58.1
  605. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  606. access:
  607. - schemaKey: AccessRequirements
  608. status: dandi:OpenAccess
  609. blobDateModified: '2023-12-12T14:37:33.991785-05:00'
  610. contentSize: 20817
  611. contentUrl:
  612. - https://api.dandiarchive.org/api/assets/0befeca4-3fd9-43da-b105-18b5ef7c8ef2/download/
  613. - https://dandiarchive-embargo.s3.amazonaws.com/000729/blobs/fce/38e/fce38e05-21bc-4812-b1ce-faa09b0a38d2
  614. dateModified: '2023-12-13T16:10:03.931686-05:00'
  615. digest:
  616. dandi:dandi-etag: 44993126699c80586870145c0acc7fcc-1
  617. dandi:sha2-256: 960f539121e924dab00ec03abbf03c3996ebcbe55ec1088971f2ebb3d406e276
  618. encodingFormat: application/octet-stream
  619. id: dandiasset:0befeca4-3fd9-43da-b105-18b5ef7c8ef2
  620. identifier: 0befeca4-3fd9-43da-b105-18b5ef7c8ef2
  621. path: derivatives/DWIprep_V.1.0/sub-256/sub-256_dwi-prep.bvec
  622. schemaKey: Asset
  623. schemaVersion: 0.6.4
  624. wasGeneratedBy:
  625. - description: Metadata generated by DANDI cli
  626. endDate: '2023-12-13T16:10:03.460089-05:00'
  627. id: urn:uuid:ab34748b-cca7-49b7-a33f-304fc12f8b56
  628. name: Metadata generation
  629. schemaKey: Activity
  630. startDate: '2023-12-13T16:10:03.460089-05:00'
  631. wasAssociatedWith:
  632. - identifier: RRID:SCR_019009
  633. name: DANDI Command Line Interface
  634. schemaKey: Software
  635. url: https://github.com/dandi/dandi-cli
  636. version: 0.58.1
  637. - description: Metadata generated by DANDI cli
  638. endDate: '2023-12-13T16:10:03.931651-05:00'
  639. id: urn:uuid:5af24ae8-5e9c-4df2-905a-35b4d305ff4c
  640. name: Metadata generation
  641. schemaKey: Activity
  642. startDate: '2023-12-13T16:10:03.931651-05:00'
  643. wasAssociatedWith:
  644. - identifier: RRID:SCR_019009
  645. name: DANDI Command Line Interface
  646. schemaKey: Software
  647. url: https://github.com/dandi/dandi-cli
  648. version: 0.58.1
  649. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  650. access:
  651. - schemaKey: AccessRequirements
  652. status: dandi:OpenAccess
  653. blobDateModified: '2023-12-12T14:38:34.618072-05:00'
  654. contentSize: 3065
  655. contentUrl:
  656. - https://api.dandiarchive.org/api/assets/f91305cb-3aa7-4d39-b115-f34df596dc19/download/
  657. - https://dandiarchive-embargo.s3.amazonaws.com/000729/blobs/1d6/204/1d62048e-0ab2-4225-a632-c95779466999
  658. dateModified: '2023-12-13T16:10:05.911436-05:00'
  659. digest:
  660. dandi:dandi-etag: 8062eecfd749ab9160635fa0afeb08b5-1
  661. dandi:sha2-256: 4f153eeb779dd0c1094abe752956579f1732d99ab623fcaade604d26cd3ee701
  662. encodingFormat: application/octet-stream
  663. id: dandiasset:f91305cb-3aa7-4d39-b115-f34df596dc19
  664. identifier: f91305cb-3aa7-4d39-b115-f34df596dc19
  665. path: derivatives/DWIprep_V.1.0/sub-256/sub-256_dwi-prephcpl.bval
  666. schemaKey: Asset
  667. schemaVersion: 0.6.4
  668. wasGeneratedBy:
  669. - description: Metadata generated by DANDI cli
  670. endDate: '2023-12-13T16:10:05.501162-05:00'
  671. id: urn:uuid:f7079861-96c0-43db-8a0c-06d553ebc53a
  672. name: Metadata generation
  673. schemaKey: Activity
  674. startDate: '2023-12-13T16:10:05.501162-05:00'
  675. wasAssociatedWith:
  676. - identifier: RRID:SCR_019009
  677. name: DANDI Command Line Interface
  678. schemaKey: Software
  679. url: https://github.com/dandi/dandi-cli
  680. version: 0.58.1
  681. - description: Metadata generated by DANDI cli
  682. endDate: '2023-12-13T16:10:05.911400-05:00'
  683. id: urn:uuid:c8abb929-5897-4bfa-aa5b-ac73ab4784f5
  684. name: Metadata generation
  685. schemaKey: Activity
  686. startDate: '2023-12-13T16:10:05.911400-05:00'
  687. wasAssociatedWith:
  688. - identifier: RRID:SCR_019009
  689. name: DANDI Command Line Interface
  690. schemaKey: Software
  691. url: https://github.com/dandi/dandi-cli
  692. version: 0.58.1
  693. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  694. access:
  695. - schemaKey: AccessRequirements
  696. status: dandi:OpenAccess
  697. blobDateModified: '2023-12-12T14:38:21.974803-05:00'
  698. contentSize: 7518
  699. contentUrl:
  700. - https://api.dandiarchive.org/api/assets/460230d1-1338-4587-809b-5d0c22300df9/download/
  701. - https://dandiarchive-embargo.s3.amazonaws.com/000729/blobs/be7/61b/be761b90-3039-4a22-895b-a3616d8c275f
  702. dateModified: '2023-12-13T16:10:06.918325-05:00'
  703. digest:
  704. dandi:dandi-etag: 8814e96417b89722b8ce5107681695f7-1
  705. dandi:sha2-256: 513a222044a1b577098dc2a8444b6466ee8f7c19e5576aef8d37074bb027bd00
  706. encodingFormat: application/octet-stream
  707. id: dandiasset:460230d1-1338-4587-809b-5d0c22300df9
  708. identifier: 460230d1-1338-4587-809b-5d0c22300df9
  709. path: derivatives/DWIprep_V.1.0/sub-256/sub-256_dwi-prephcpl.bvec
  710. schemaKey: Asset
  711. schemaVersion: 0.6.4
  712. wasGeneratedBy:
  713. - description: Metadata generated by DANDI cli
  714. endDate: '2023-12-13T16:10:06.483859-05:00'
  715. id: urn:uuid:6c9a1a96-2da7-4803-97f1-5e49b9f436fa
  716. name: Metadata generation
  717. schemaKey: Activity
  718. startDate: '2023-12-13T16:10:06.483859-05:00'
  719. wasAssociatedWith:
  720. - identifier: RRID:SCR_019009
  721. name: DANDI Command Line Interface
  722. schemaKey: Software
  723. url: https://github.com/dandi/dandi-cli
  724. version: 0.58.1
  725. - description: Metadata generated by DANDI cli
  726. endDate: '2023-12-13T16:10:06.918292-05:00'
  727. id: urn:uuid:ce7317df-084b-441b-901a-057242e7ae73
  728. name: Metadata generation
  729. schemaKey: Activity
  730. startDate: '2023-12-13T16:10:06.918292-05:00'
  731. wasAssociatedWith:
  732. - identifier: RRID:SCR_019009
  733. name: DANDI Command Line Interface
  734. schemaKey: Software
  735. url: https://github.com/dandi/dandi-cli
  736. version: 0.58.1
  737. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  738. access:
  739. - schemaKey: AccessRequirements
  740. status: dandi:OpenAccess
  741. blobDateModified: '2023-12-11T18:35:52-05:00'
  742. contentSize: 152236625
  743. contentUrl:
  744. - https://api.dandiarchive.org/api/assets/8ae1f03c-74b1-4089-aa1f-ea43935ef71e/download/
  745. - https://dandiarchive-embargo.s3.amazonaws.com/000729/blobs/83e/e3b/83ee3bc6-a601-4b3f-b334-28ea32f9522c
  746. dateModified: '2023-12-13T16:09:59.650748-05:00'
  747. digest:
  748. dandi:dandi-etag: 42f294ae67d13d7d4d610e1628fba2a1-3
  749. dandi:sha2-256: d439551d0da7b2f6f6457fe7a1729a897b44c78a136f04baab70a6079e18ce58
  750. encodingFormat: application/gzip
  751. id: dandiasset:8ae1f03c-74b1-4089-aa1f-ea43935ef71e
  752. identifier: 8ae1f03c-74b1-4089-aa1f-ea43935ef71e
  753. path: derivatives/DWIprep_V.1.0/sub-243/sub-243_dwihcpl.nii.gz
  754. schemaKey: Asset
  755. schemaVersion: 0.6.4
  756. wasGeneratedBy:
  757. - description: Metadata generated by DANDI cli
  758. endDate: '2023-12-13T16:09:56.243099-05:00'
  759. id: urn:uuid:c50d0058-ebe2-4069-bd0b-2ec8c735e185
  760. name: Metadata generation
  761. schemaKey: Activity
  762. startDate: '2023-12-13T16:09:56.243099-05:00'
  763. wasAssociatedWith:
  764. - identifier: RRID:SCR_019009
  765. name: DANDI Command Line Interface
  766. schemaKey: Software
  767. url: https://github.com/dandi/dandi-cli
  768. version: 0.58.1
  769. - description: Metadata generated by DANDI cli
  770. endDate: '2023-12-13T16:09:59.650715-05:00'
  771. id: urn:uuid:24b061f4-b107-4d9f-a868-f33fa818b501
  772. name: Metadata generation
  773. schemaKey: Activity
  774. startDate: '2023-12-13T16:09:59.650715-05:00'
  775. wasAssociatedWith:
  776. - identifier: RRID:SCR_019009
  777. name: DANDI Command Line Interface
  778. schemaKey: Software
  779. url: https://github.com/dandi/dandi-cli
  780. version: 0.58.1
  781. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  782. access:
  783. - schemaKey: AccessRequirements
  784. status: dandi:OpenAccess
  785. blobDateModified: '2023-12-13T12:10:50.954950-05:00'
  786. contentSize: 534413048
  787. contentUrl:
  788. - https://api.dandiarchive.org/api/assets/f8d0e8b4-7d1e-40fc-893e-e86673575712/download/
  789. - https://dandiarchive-embargo.s3.amazonaws.com/000729/blobs/e00/6fb/e006fbb6-4959-490d-bc87-d3f3ce65280b
  790. dateModified: '2023-12-13T16:09:54.981129-05:00'
  791. digest:
  792. dandi:dandi-etag: 834422382e96841b0339ff77264b070f-8
  793. dandi:sha2-256: 1df4a1b29b5c90c7536dcfea9b4ff1d76badd72b19a71816360b0699d3d22153
  794. encodingFormat: application/gzip
  795. id: dandiasset:f8d0e8b4-7d1e-40fc-893e-e86673575712
  796. identifier: f8d0e8b4-7d1e-40fc-893e-e86673575712
  797. path: derivatives/DWIprep_V.1.0/sub-243/sub-243_dwi-prephcpl.nii.gz
  798. schemaKey: Asset
  799. schemaVersion: 0.6.4
  800. wasGeneratedBy:
  801. - description: Metadata generated by DANDI cli
  802. endDate: '2023-12-13T16:09:53.089013-05:00'
  803. id: urn:uuid:9b8aff81-a515-46c7-bd81-52b7309df1dd
  804. name: Metadata generation
  805. schemaKey: Activity
  806. startDate: '2023-12-13T16:09:53.089013-05:00'
  807. wasAssociatedWith:
  808. - identifier: RRID:SCR_019009
  809. name: DANDI Command Line Interface
  810. schemaKey: Software
  811. url: https://github.com/dandi/dandi-cli
  812. version: 0.58.1
  813. - description: Metadata generated by DANDI cli
  814. endDate: '2023-12-13T16:09:54.981098-05:00'
  815. id: urn:uuid:1d4cc770-1db3-42fb-81e4-c16f768ed4eb
  816. name: Metadata generation
  817. schemaKey: Activity
  818. startDate: '2023-12-13T16:09:54.981098-05:00'
  819. wasAssociatedWith:
  820. - identifier: RRID:SCR_019009
  821. name: DANDI Command Line Interface
  822. schemaKey: Software
  823. url: https://github.com/dandi/dandi-cli
  824. version: 0.58.1
  825. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  826. access:
  827. - schemaKey: AccessRequirements
  828. status: dandi:OpenAccess
  829. blobDateModified: '2023-12-12T14:36:30.111432-05:00'
  830. contentSize: 3066
  831. contentUrl:
  832. - https://api.dandiarchive.org/api/assets/56905d84-f956-4e6a-b84b-768cb0d38971/download/
  833. - https://dandiarchive-embargo.s3.amazonaws.com/000729/blobs/c37/6ec/c376ec4a-d22b-4824-9730-32cfa97c1a17
  834. dateModified: '2023-12-13T16:11:12.837008-05:00'
  835. digest:
  836. dandi:dandi-etag: d3a118f76bbfb91f4fd34df346a53241-1
  837. dandi:sha2-256: bb9f58c033835dd08b2d76c0bcc076881d2bcf5a8a6cd91e9214389c4dd20496
  838. encodingFormat: application/octet-stream
  839. id: dandiasset:56905d84-f956-4e6a-b84b-768cb0d38971
  840. identifier: 56905d84-f956-4e6a-b84b-768cb0d38971
  841. path: derivatives/DWIprep_V.1.0/sub-256/sub-256_dwihcpl.bval
  842. schemaKey: Asset
  843. schemaVersion: 0.6.4
  844. wasGeneratedBy:
  845. - description: Metadata generated by DANDI cli
  846. endDate: '2023-12-13T16:11:12.462064-05:00'
  847. id: urn:uuid:32df547d-8667-4e53-91f5-55f15226709b
  848. name: Metadata generation
  849. schemaKey: Activity
  850. startDate: '2023-12-13T16:11:12.462064-05:00'
  851. wasAssociatedWith:
  852. - identifier: RRID:SCR_019009
  853. name: DANDI Command Line Interface
  854. schemaKey: Software
  855. url: https://github.com/dandi/dandi-cli
  856. version: 0.58.1
  857. - description: Metadata generated by DANDI cli
  858. endDate: '2023-12-13T16:11:12.836973-05:00'
  859. id: urn:uuid:d043365f-1dad-448d-bc29-ccb61201555a
  860. name: Metadata generation
  861. schemaKey: Activity
  862. startDate: '2023-12-13T16:11:12.836973-05:00'
  863. wasAssociatedWith:
  864. - identifier: RRID:SCR_019009
  865. name: DANDI Command Line Interface
  866. schemaKey: Software
  867. url: https://github.com/dandi/dandi-cli
  868. version: 0.58.1
  869. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  870. access:
  871. - schemaKey: AccessRequirements
  872. status: dandi:OpenAccess
  873. blobDateModified: '2023-12-12T14:35:57.293736-05:00'
  874. contentSize: 7518
  875. contentUrl:
  876. - https://api.dandiarchive.org/api/assets/d6495202-c51d-44b6-97c2-6a59bca69dcf/download/
  877. - https://dandiarchive-embargo.s3.amazonaws.com/000729/blobs/88e/fc5/88efc5f2-30e0-47fd-858f-950fe219c4bb
  878. dateModified: '2023-12-13T16:11:13.639998-05:00'
  879. digest:
  880. dandi:dandi-etag: 851ad355152709dc587467ca8ad6bff9-1
  881. dandi:sha2-256: 4e3ba0f30070d36ae777e6dd0f26e7bc890b02e688b94d65452a20f5301d9a8b
  882. encodingFormat: application/octet-stream
  883. id: dandiasset:d6495202-c51d-44b6-97c2-6a59bca69dcf
  884. identifier: d6495202-c51d-44b6-97c2-6a59bca69dcf
  885. path: derivatives/DWIprep_V.1.0/sub-256/sub-256_dwihcpl.bvec
  886. schemaKey: Asset
  887. schemaVersion: 0.6.4
  888. wasGeneratedBy:
  889. - description: Metadata generated by DANDI cli
  890. endDate: '2023-12-13T16:11:13.355799-05:00'
  891. id: urn:uuid:656c27f9-aefc-4c80-8986-fa30dcab1915
  892. name: Metadata generation
  893. schemaKey: Activity
  894. startDate: '2023-12-13T16:11:13.355799-05:00'
  895. wasAssociatedWith:
  896. - identifier: RRID:SCR_019009
  897. name: DANDI Command Line Interface
  898. schemaKey: Software
  899. url: https://github.com/dandi/dandi-cli
  900. version: 0.58.1
  901. - description: Metadata generated by DANDI cli
  902. endDate: '2023-12-13T16:11:13.639964-05:00'
  903. id: urn:uuid:1ddb228e-ff42-414b-a705-5e44fde01bdc
  904. name: Metadata generation
  905. schemaKey: Activity
  906. startDate: '2023-12-13T16:11:13.639964-05:00'
  907. wasAssociatedWith:
  908. - identifier: RRID:SCR_019009
  909. name: DANDI Command Line Interface
  910. schemaKey: Software
  911. url: https://github.com/dandi/dandi-cli
  912. version: 0.58.1
  913. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  914. access:
  915. - schemaKey: AccessRequirements
  916. status: dandi:OpenAccess
  917. blobDateModified: '2023-12-11T16:34:19.368082-05:00'
  918. contentSize: 767951200
  919. contentUrl:
  920. - https://api.dandiarchive.org/api/assets/ca204cb2-354f-4fad-882e-864a1335a569/download/
  921. - https://dandiarchive-embargo.s3.amazonaws.com/000729/blobs/5c7/a58/5c7a58fa-3358-4aed-82bf-98739039eb4d
  922. dateModified: '2023-12-13T16:10:09.743013-05:00'
  923. digest:
  924. dandi:dandi-etag: ae1500b91126b66cea8762798388efdd-12
  925. dandi:sha2-256: e6c0e4e7209187fec187963b9ae13f2ba636920a84ebd0187c53911e5a449d8a
  926. encodingFormat: application/octet-stream
  927. id: dandiasset:ca204cb2-354f-4fad-882e-864a1335a569
  928. identifier: ca204cb2-354f-4fad-882e-864a1335a569
  929. path: derivatives/DWIprep_V.1.0/sub-256/sub-256_dwi-prephcpl.nii
  930. schemaKey: Asset
  931. schemaVersion: 0.6.4
  932. wasGeneratedBy:
  933. - description: Metadata generated by DANDI cli
  934. endDate: '2023-12-13T16:10:07.583450-05:00'
  935. id: urn:uuid:c2ceffd3-f054-43cc-b5b2-2af46ec7f9af
  936. name: Metadata generation
  937. schemaKey: Activity
  938. startDate: '2023-12-13T16:10:07.583450-05:00'
  939. wasAssociatedWith:
  940. - identifier: RRID:SCR_019009
  941. name: DANDI Command Line Interface
  942. schemaKey: Software
  943. url: https://github.com/dandi/dandi-cli
  944. version: 0.58.1
  945. - description: Metadata generated by DANDI cli
  946. endDate: '2023-12-13T16:10:09.742978-05:00'
  947. id: urn:uuid:0c914750-de75-4e04-b769-c00feb028fcf
  948. name: Metadata generation
  949. schemaKey: Activity
  950. startDate: '2023-12-13T16:10:09.742978-05:00'
  951. wasAssociatedWith:
  952. - identifier: RRID:SCR_019009
  953. name: DANDI Command Line Interface
  954. schemaKey: Software
  955. url: https://github.com/dandi/dandi-cli
  956. version: 0.58.1
  957. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  958. access:
  959. - schemaKey: AccessRequirements
  960. status: dandi:OpenAccess
  961. blobDateModified: '2023-12-11T14:32:24.091995-05:00'
  962. contentSize: 4423
  963. contentUrl:
  964. - https://api.dandiarchive.org/api/assets/596dfe24-31a4-4f53-97c2-2dc1931a7d2a/download/
  965. - https://dandiarchive-embargo.s3.amazonaws.com/000729/blobs/ccb/530/ccb5308e-219e-48f9-8a1f-32f0e872110c
  966. dateModified: '2023-12-13T16:11:17.293802-05:00'
  967. digest:
  968. dandi:dandi-etag: 51bb313f2aaa0ffb2a64fd8f5196bcc8-1
  969. dandi:sha2-256: c4e03869046f40864132201f9d7f75653a6094bfed9474909c2731a86e7f9885
  970. encodingFormat: application/gzip
  971. id: dandiasset:596dfe24-31a4-4f53-97c2-2dc1931a7d2a
  972. identifier: 596dfe24-31a4-4f53-97c2-2dc1931a7d2a
  973. path: derivatives/DWIprep_V.1.0/sub-256/sub-256_inject.nii.gz
  974. schemaKey: Asset
  975. schemaVersion: 0.6.4
  976. wasGeneratedBy:
  977. - description: Metadata generated by DANDI cli
  978. endDate: '2023-12-13T16:11:16.881758-05:00'
  979. id: urn:uuid:7926219e-82fd-45fa-b8a6-bb43e7fede57
  980. name: Metadata generation
  981. schemaKey: Activity
  982. startDate: '2023-12-13T16:11:16.881758-05:00'
  983. wasAssociatedWith:
  984. - identifier: RRID:SCR_019009
  985. name: DANDI Command Line Interface
  986. schemaKey: Software
  987. url: https://github.com/dandi/dandi-cli
  988. version: 0.58.1
  989. - description: Metadata generated by DANDI cli
  990. endDate: '2023-12-13T16:11:17.293744-05:00'
  991. id: urn:uuid:3e971ae8-238d-4c3f-810f-b123006c3ac3
  992. name: Metadata generation
  993. schemaKey: Activity
  994. startDate: '2023-12-13T16:11:17.293744-05:00'
  995. wasAssociatedWith:
  996. - identifier: RRID:SCR_019009
  997. name: DANDI Command Line Interface
  998. schemaKey: Software
  999. url: https://github.com/dandi/dandi-cli
  1000. version: 0.58.1
  1001. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1002. access:
  1003. - schemaKey: AccessRequirements
  1004. status: dandi:OpenAccess
  1005. blobDateModified: '2023-12-11T16:52:53.587865-05:00'
  1006. contentSize: 364
  1007. contentUrl:
  1008. - https://api.dandiarchive.org/api/assets/2e97021b-f0df-49d7-b67a-f3a523d15e29/download/
  1009. - https://dandiarchive-embargo.s3.amazonaws.com/000729/blobs/079/c5c/079c5c17-ba3a-40d1-a696-e77ee8c7f211
  1010. dateModified: '2023-12-13T16:11:18.892957-05:00'
  1011. digest:
  1012. dandi:dandi-etag: 2f1a253fad778ba36614f66eb803ca59-1
  1013. dandi:sha2-256: ccb9b2fa4b7c3a926613aca5346231be47b81d74523760af41e50b2ed95cf0d5
  1014. encodingFormat: application/json
  1015. id: dandiasset:2e97021b-f0df-49d7-b67a-f3a523d15e29
  1016. identifier: 2e97021b-f0df-49d7-b67a-f3a523d15e29
  1017. path: participants.json
  1018. schemaKey: Asset
  1019. schemaVersion: 0.6.4
  1020. wasAttributedTo: []
  1021. wasGeneratedBy:
  1022. - description: Metadata generated by DANDI cli
  1023. endDate: '2023-12-13T16:11:18.601088-05:00'
  1024. id: urn:uuid:c630be7c-179b-475b-9728-0f85f6f79f16
  1025. name: Metadata generation
  1026. schemaKey: Activity
  1027. startDate: '2023-12-13T16:11:18.601088-05:00'
  1028. wasAssociatedWith:
  1029. - identifier: RRID:SCR_019009
  1030. name: DANDI Command Line Interface
  1031. schemaKey: Software
  1032. url: https://github.com/dandi/dandi-cli
  1033. version: 0.58.1
  1034. - description: Metadata generated by DANDI cli
  1035. endDate: '2023-12-13T16:11:18.892921-05:00'
  1036. id: urn:uuid:5f35aa8f-c859-4efc-af94-b43bdb3cd754
  1037. name: Metadata generation
  1038. schemaKey: Activity
  1039. startDate: '2023-12-13T16:11:18.892921-05:00'
  1040. wasAssociatedWith:
  1041. - identifier: RRID:SCR_019009
  1042. name: DANDI Command Line Interface
  1043. schemaKey: Software
  1044. url: https://github.com/dandi/dandi-cli
  1045. version: 0.58.1
  1046. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1047. access:
  1048. - schemaKey: AccessRequirements
  1049. status: dandi:OpenAccess
  1050. blobDateModified: '2023-12-11T16:53:50.618081-05:00'
  1051. contentSize: 51
  1052. contentUrl:
  1053. - https://api.dandiarchive.org/api/assets/aa0435fe-d2b9-45f3-80ce-f1280f795cc5/download/
  1054. - https://dandiarchive-embargo.s3.amazonaws.com/000729/blobs/d1b/b00/d1bb0004-c6fa-4217-81cc-d1ee5eabb499
  1055. dateModified: '2023-12-13T16:11:20.508973-05:00'
  1056. digest:
  1057. dandi:dandi-etag: 2bf090ae07510b3ef74c30f422922ada-1
  1058. dandi:sha2-256: dff48ec340e8fc5556fedca5df17da8141c21f7448db9250d9e0883195536f02
  1059. encodingFormat: text/tab-separated-values
  1060. id: dandiasset:aa0435fe-d2b9-45f3-80ce-f1280f795cc5
  1061. identifier: aa0435fe-d2b9-45f3-80ce-f1280f795cc5
  1062. path: participants.tsv
  1063. schemaKey: Asset
  1064. schemaVersion: 0.6.4
  1065. wasAttributedTo: []
  1066. wasGeneratedBy:
  1067. - description: Metadata generated by DANDI cli
  1068. endDate: '2023-12-13T16:11:20.145617-05:00'
  1069. id: urn:uuid:9f442484-7119-4d60-935a-6c99332d44a7
  1070. name: Metadata generation
  1071. schemaKey: Activity
  1072. startDate: '2023-12-13T16:11:20.145617-05:00'
  1073. wasAssociatedWith:
  1074. - identifier: RRID:SCR_019009
  1075. name: DANDI Command Line Interface
  1076. schemaKey: Software
  1077. url: https://github.com/dandi/dandi-cli
  1078. version: 0.58.1
  1079. - description: Metadata generated by DANDI cli
  1080. endDate: '2023-12-13T16:11:20.508936-05:00'
  1081. id: urn:uuid:122e075c-4bb5-478d-b152-a52d7e444fe5
  1082. name: Metadata generation
  1083. schemaKey: Activity
  1084. startDate: '2023-12-13T16:11:20.508936-05:00'
  1085. wasAssociatedWith:
  1086. - identifier: RRID:SCR_019009
  1087. name: DANDI Command Line Interface
  1088. schemaKey: Software
  1089. url: https://github.com/dandi/dandi-cli
  1090. version: 0.58.1
  1091. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1092. access:
  1093. - schemaKey: AccessRequirements
  1094. status: dandi:OpenAccess
  1095. blobDateModified: '2023-12-12T14:33:15.852450-05:00'
  1096. contentSize: 8671
  1097. contentUrl:
  1098. - https://api.dandiarchive.org/api/assets/e3d2b57a-565e-4810-bd86-6fe9e0ac2198/download/
  1099. - https://dandiarchive-embargo.s3.amazonaws.com/000729/blobs/498/e9d/498e9d96-be84-47f6-a096-fc6bf408a55c
  1100. dateModified: '2023-12-13T16:11:22.063434-05:00'
  1101. digest:
  1102. dandi:dandi-etag: a4617cde4478641106312fd514c29fc6-1
  1103. dandi:sha2-256: 45fb7cffac16be1d848208b77f9235ba01edab2ced39afc30e76cd1499606b33
  1104. encodingFormat: application/octet-stream
  1105. id: dandiasset:e3d2b57a-565e-4810-bd86-6fe9e0ac2198
  1106. identifier: e3d2b57a-565e-4810-bd86-6fe9e0ac2198
  1107. path: sub-243/dwi/sub-243_dwi.bval
  1108. schemaKey: Asset
  1109. schemaVersion: 0.6.4
  1110. wasAttributedTo:
  1111. - identifier: '243'
  1112. schemaKey: Participant
  1113. wasGeneratedBy:
  1114. - description: Metadata generated by DANDI cli
  1115. endDate: '2023-12-13T16:11:21.696455-05:00'
  1116. id: urn:uuid:cef9d80e-7737-4330-8e47-b700fbbdfcb0
  1117. name: Metadata generation
  1118. schemaKey: Activity
  1119. startDate: '2023-12-13T16:11:21.696455-05:00'
  1120. wasAssociatedWith:
  1121. - identifier: RRID:SCR_019009
  1122. name: DANDI Command Line Interface
  1123. schemaKey: Software
  1124. url: https://github.com/dandi/dandi-cli
  1125. version: 0.58.1
  1126. - description: Metadata generated by DANDI cli
  1127. endDate: '2023-12-13T16:11:22.063396-05:00'
  1128. id: urn:uuid:09ce8862-0bed-47f3-84de-1a75ee4c0ce4
  1129. name: Metadata generation
  1130. schemaKey: Activity
  1131. startDate: '2023-12-13T16:11:22.063396-05:00'
  1132. wasAssociatedWith:
  1133. - identifier: RRID:SCR_019009
  1134. name: DANDI Command Line Interface
  1135. schemaKey: Software
  1136. url: https://github.com/dandi/dandi-cli
  1137. version: 0.58.1
  1138. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1139. access:
  1140. - schemaKey: AccessRequirements
  1141. status: dandi:OpenAccess
  1142. blobDateModified: '2023-12-12T14:32:07.529001-05:00'
  1143. contentSize: 20736
  1144. contentUrl:
  1145. - https://api.dandiarchive.org/api/assets/2d568e02-6c93-42c9-be8c-f31e96fdf2a5/download/
  1146. - https://dandiarchive-embargo.s3.amazonaws.com/000729/blobs/6e1/be6/6e1be631-b53f-4e93-8a28-0f0555f033bd
  1147. dateModified: '2023-12-13T16:11:23.596103-05:00'
  1148. digest:
  1149. dandi:dandi-etag: bb587652877458545f178e48722a90d9-1
  1150. dandi:sha2-256: 975da857e8abc660d9a34813906c62ca117c7b9b4634dd80e2d530e23a0fabce
  1151. encodingFormat: application/octet-stream
  1152. id: dandiasset:2d568e02-6c93-42c9-be8c-f31e96fdf2a5
  1153. identifier: 2d568e02-6c93-42c9-be8c-f31e96fdf2a5
  1154. path: sub-243/dwi/sub-243_dwi.bvec
  1155. schemaKey: Asset
  1156. schemaVersion: 0.6.4
  1157. wasAttributedTo:
  1158. - identifier: '243'
  1159. schemaKey: Participant
  1160. wasGeneratedBy:
  1161. - description: Metadata generated by DANDI cli
  1162. endDate: '2023-12-13T16:11:23.245269-05:00'
  1163. id: urn:uuid:de66cc78-f022-4c89-bd02-af883e77e760
  1164. name: Metadata generation
  1165. schemaKey: Activity
  1166. startDate: '2023-12-13T16:11:23.245269-05:00'
  1167. wasAssociatedWith:
  1168. - identifier: RRID:SCR_019009
  1169. name: DANDI Command Line Interface
  1170. schemaKey: Software
  1171. url: https://github.com/dandi/dandi-cli
  1172. version: 0.58.1
  1173. - description: Metadata generated by DANDI cli
  1174. endDate: '2023-12-13T16:11:23.596064-05:00'
  1175. id: urn:uuid:402acbb3-d1b0-4bf6-adf4-78a8e9869091
  1176. name: Metadata generation
  1177. schemaKey: Activity
  1178. startDate: '2023-12-13T16:11:23.596064-05:00'
  1179. wasAssociatedWith:
  1180. - identifier: RRID:SCR_019009
  1181. name: DANDI Command Line Interface
  1182. schemaKey: Software
  1183. url: https://github.com/dandi/dandi-cli
  1184. version: 0.58.1
  1185. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1186. access:
  1187. - schemaKey: AccessRequirements
  1188. status: dandi:OpenAccess
  1189. blobDateModified: '2023-12-11T16:21:35.585803-05:00'
  1190. contentSize: 2026
  1191. contentUrl:
  1192. - https://api.dandiarchive.org/api/assets/d453f083-c24f-4f4e-876c-8d4a9ab1a0e8/download/
  1193. - https://dandiarchive-embargo.s3.amazonaws.com/000729/blobs/357/ebb/357ebb03-c51d-4d9f-aeea-c3bd8838589a
  1194. dateModified: '2023-12-13T16:11:25.026816-05:00'
  1195. digest:
  1196. dandi:dandi-etag: 275b57279a747b503d520d3eaf3a0bc2-1
  1197. dandi:sha2-256: 6d34f6993889ff563501ae6fbb3506eb4ecb822ec51b445d43a5533610be999d
  1198. encodingFormat: application/json
  1199. id: dandiasset:d453f083-c24f-4f4e-876c-8d4a9ab1a0e8
  1200. identifier: d453f083-c24f-4f4e-876c-8d4a9ab1a0e8
  1201. path: sub-243/dwi/sub-243_dwi.json
  1202. schemaKey: Asset
  1203. schemaVersion: 0.6.4
  1204. wasAttributedTo:
  1205. - identifier: '243'
  1206. schemaKey: Participant
  1207. wasGeneratedBy:
  1208. - description: Metadata generated by DANDI cli
  1209. endDate: '2023-12-13T16:11:24.742412-05:00'
  1210. id: urn:uuid:7bf83dbf-ef51-4d1d-a42d-6d551e6fcf19
  1211. name: Metadata generation
  1212. schemaKey: Activity
  1213. startDate: '2023-12-13T16:11:24.742412-05:00'
  1214. wasAssociatedWith:
  1215. - identifier: RRID:SCR_019009
  1216. name: DANDI Command Line Interface
  1217. schemaKey: Software
  1218. url: https://github.com/dandi/dandi-cli
  1219. version: 0.58.1
  1220. - description: Metadata generated by DANDI cli
  1221. endDate: '2023-12-13T16:11:25.026783-05:00'
  1222. id: urn:uuid:1f6a7dec-fcb5-4b41-b743-ddf1d11f4fe0
  1223. name: Metadata generation
  1224. schemaKey: Activity
  1225. startDate: '2023-12-13T16:11:25.026783-05:00'
  1226. wasAssociatedWith:
  1227. - identifier: RRID:SCR_019009
  1228. name: DANDI Command Line Interface
  1229. schemaKey: Software
  1230. url: https://github.com/dandi/dandi-cli
  1231. version: 0.58.1
  1232. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1233. access:
  1234. - schemaKey: AccessRequirements
  1235. status: dandi:OpenAccess
  1236. blobDateModified: '2023-12-11T14:39:33.129297-05:00'
  1237. contentSize: 167096143
  1238. contentUrl:
  1239. - https://api.dandiarchive.org/api/assets/5c4c5cf8-5cf3-41dc-9b6f-94cb417aaf47/download/
  1240. - https://dandiarchive-embargo.s3.amazonaws.com/000729/blobs/86f/58e/86f58eed-8cd9-43f2-887e-1bd97da6449f
  1241. dateModified: '2023-12-13T16:11:17.575603-05:00'
  1242. digest:
  1243. dandi:dandi-etag: 422aac4e50a7431fdfdc065feb907704-3
  1244. dandi:sha2-256: 4a7722d47594cdb1da91d009cd133944885d2e4b0b6b2ceea599b56f18d57e2d
  1245. encodingFormat: application/gzip
  1246. id: dandiasset:5c4c5cf8-5cf3-41dc-9b6f-94cb417aaf47
  1247. identifier: 5c4c5cf8-5cf3-41dc-9b6f-94cb417aaf47
  1248. path: derivatives/DWIprep_V.1.0/sub-256/sub-256_dwihcpl.nii.gz
  1249. schemaKey: Asset
  1250. schemaVersion: 0.6.4
  1251. wasGeneratedBy:
  1252. - description: Metadata generated by DANDI cli
  1253. endDate: '2023-12-13T16:11:14.297776-05:00'
  1254. id: urn:uuid:d55bb25b-1f7e-4ebd-9397-3c046b08a67f
  1255. name: Metadata generation
  1256. schemaKey: Activity
  1257. startDate: '2023-12-13T16:11:14.297776-05:00'
  1258. wasAssociatedWith:
  1259. - identifier: RRID:SCR_019009
  1260. name: DANDI Command Line Interface
  1261. schemaKey: Software
  1262. url: https://github.com/dandi/dandi-cli
  1263. version: 0.58.1
  1264. - description: Metadata generated by DANDI cli
  1265. endDate: '2023-12-13T16:11:17.575569-05:00'
  1266. id: urn:uuid:3344c9de-8de3-4214-8d1e-2b24c9b71831
  1267. name: Metadata generation
  1268. schemaKey: Activity
  1269. startDate: '2023-12-13T16:11:17.575569-05:00'
  1270. wasAssociatedWith:
  1271. - identifier: RRID:SCR_019009
  1272. name: DANDI Command Line Interface
  1273. schemaKey: Software
  1274. url: https://github.com/dandi/dandi-cli
  1275. version: 0.58.1
  1276. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1277. access:
  1278. - schemaKey: AccessRequirements
  1279. status: dandi:OpenAccess
  1280. blobDateModified: '2023-12-12T14:32:46.640831-05:00'
  1281. contentSize: 8672
  1282. contentUrl:
  1283. - https://api.dandiarchive.org/api/assets/e3ca9c32-47c6-4e90-98c2-ee2d3db8ddc9/download/
  1284. - https://dandiarchive-embargo.s3.amazonaws.com/000729/blobs/767/af5/767af566-7bfc-4184-a996-02287c40ef3d
  1285. dateModified: '2023-12-13T16:12:20.369137-05:00'
  1286. digest:
  1287. dandi:dandi-etag: 9d572ea71dbf3774bcb3c1b73653dfa5-1
  1288. dandi:sha2-256: 5698368c0e6f412130bc5bdd75993ebc0f9577685e6db26a3f02fbf9f7803b6f
  1289. encodingFormat: application/octet-stream
  1290. id: dandiasset:e3ca9c32-47c6-4e90-98c2-ee2d3db8ddc9
  1291. identifier: e3ca9c32-47c6-4e90-98c2-ee2d3db8ddc9
  1292. path: sub-256/dwi/sub-256_dwi.bval
  1293. schemaKey: Asset
  1294. schemaVersion: 0.6.4
  1295. wasAttributedTo:
  1296. - identifier: '256'
  1297. schemaKey: Participant
  1298. wasGeneratedBy:
  1299. - description: Metadata generated by DANDI cli
  1300. endDate: '2023-12-13T16:12:20.099719-05:00'
  1301. id: urn:uuid:a2c81fec-58eb-4448-8db8-fcd31abf06c1
  1302. name: Metadata generation
  1303. schemaKey: Activity
  1304. startDate: '2023-12-13T16:12:20.099719-05:00'
  1305. wasAssociatedWith:
  1306. - identifier: RRID:SCR_019009
  1307. name: DANDI Command Line Interface
  1308. schemaKey: Software
  1309. url: https://github.com/dandi/dandi-cli
  1310. version: 0.58.1
  1311. - description: Metadata generated by DANDI cli
  1312. endDate: '2023-12-13T16:12:20.369104-05:00'
  1313. id: urn:uuid:bfc24842-38be-48b4-b00e-baaf20b38aed
  1314. name: Metadata generation
  1315. schemaKey: Activity
  1316. startDate: '2023-12-13T16:12:20.369104-05:00'
  1317. wasAssociatedWith:
  1318. - identifier: RRID:SCR_019009
  1319. name: DANDI Command Line Interface
  1320. schemaKey: Software
  1321. url: https://github.com/dandi/dandi-cli
  1322. version: 0.58.1
  1323. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1324. access:
  1325. - schemaKey: AccessRequirements
  1326. status: dandi:OpenAccess
  1327. blobDateModified: '2023-12-12T14:32:34.440572-05:00'
  1328. contentSize: 20817
  1329. contentUrl:
  1330. - https://api.dandiarchive.org/api/assets/7b6d2f21-68a8-462e-aca3-ca668092838a/download/
  1331. - https://dandiarchive-embargo.s3.amazonaws.com/000729/blobs/a8c/2f7/a8c2f741-1338-4152-a0e3-ecc2c3457b01
  1332. dateModified: '2023-12-13T16:12:21.168596-05:00'
  1333. digest:
  1334. dandi:dandi-etag: a2f7984cfcbbc811f9c29d6fc37d6818-1
  1335. dandi:sha2-256: 3ca0330a66d041ed02dee0cffabef9fc7d508f46bd2c0af9ee7f2df834d5fb47
  1336. encodingFormat: application/octet-stream
  1337. id: dandiasset:7b6d2f21-68a8-462e-aca3-ca668092838a
  1338. identifier: 7b6d2f21-68a8-462e-aca3-ca668092838a
  1339. path: sub-256/dwi/sub-256_dwi.bvec
  1340. schemaKey: Asset
  1341. schemaVersion: 0.6.4
  1342. wasAttributedTo:
  1343. - identifier: '256'
  1344. schemaKey: Participant
  1345. wasGeneratedBy:
  1346. - description: Metadata generated by DANDI cli
  1347. endDate: '2023-12-13T16:12:20.846042-05:00'
  1348. id: urn:uuid:a3036277-a28f-4726-9c5c-a8e2610fd3c8
  1349. name: Metadata generation
  1350. schemaKey: Activity
  1351. startDate: '2023-12-13T16:12:20.846042-05:00'
  1352. wasAssociatedWith:
  1353. - identifier: RRID:SCR_019009
  1354. name: DANDI Command Line Interface
  1355. schemaKey: Software
  1356. url: https://github.com/dandi/dandi-cli
  1357. version: 0.58.1
  1358. - description: Metadata generated by DANDI cli
  1359. endDate: '2023-12-13T16:12:21.168564-05:00'
  1360. id: urn:uuid:3badf596-8ddd-4b3d-861b-b189448a7c7f
  1361. name: Metadata generation
  1362. schemaKey: Activity
  1363. startDate: '2023-12-13T16:12:21.168564-05:00'
  1364. wasAssociatedWith:
  1365. - identifier: RRID:SCR_019009
  1366. name: DANDI Command Line Interface
  1367. schemaKey: Software
  1368. url: https://github.com/dandi/dandi-cli
  1369. version: 0.58.1
  1370. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1371. access:
  1372. - schemaKey: AccessRequirements
  1373. status: dandi:OpenAccess
  1374. blobDateModified: '2023-12-11T16:21:52.924172-05:00'
  1375. contentSize: 2026
  1376. contentUrl:
  1377. - https://api.dandiarchive.org/api/assets/7eb1574a-a37a-4422-a777-155a3f4ad407/download/
  1378. - https://dandiarchive-embargo.s3.amazonaws.com/000729/blobs/357/ebb/357ebb03-c51d-4d9f-aeea-c3bd8838589a
  1379. dateModified: '2023-12-13T16:12:22.792863-05:00'
  1380. digest:
  1381. dandi:dandi-etag: 275b57279a747b503d520d3eaf3a0bc2-1
  1382. dandi:sha2-256: 6d34f6993889ff563501ae6fbb3506eb4ecb822ec51b445d43a5533610be999d
  1383. encodingFormat: application/json
  1384. id: dandiasset:7eb1574a-a37a-4422-a777-155a3f4ad407
  1385. identifier: 7eb1574a-a37a-4422-a777-155a3f4ad407
  1386. path: sub-256/dwi/sub-256_dwi.json
  1387. schemaKey: Asset
  1388. schemaVersion: 0.6.4
  1389. wasAttributedTo:
  1390. - identifier: '256'
  1391. schemaKey: Participant
  1392. wasGeneratedBy:
  1393. - description: Metadata generated by DANDI cli
  1394. endDate: '2023-12-13T16:12:22.534750-05:00'
  1395. id: urn:uuid:294b5abd-9db2-4048-9544-a924d57b7777
  1396. name: Metadata generation
  1397. schemaKey: Activity
  1398. startDate: '2023-12-13T16:12:22.534750-05:00'
  1399. wasAssociatedWith:
  1400. - identifier: RRID:SCR_019009
  1401. name: DANDI Command Line Interface
  1402. schemaKey: Software
  1403. url: https://github.com/dandi/dandi-cli
  1404. version: 0.58.1
  1405. - description: Metadata generated by DANDI cli
  1406. endDate: '2023-12-13T16:12:22.792826-05:00'
  1407. id: urn:uuid:aec1dcfb-7671-456d-b0d0-8720592d9db2
  1408. name: Metadata generation
  1409. schemaKey: Activity
  1410. startDate: '2023-12-13T16:12:22.792826-05:00'
  1411. wasAssociatedWith:
  1412. - identifier: RRID:SCR_019009
  1413. name: DANDI Command Line Interface
  1414. schemaKey: Software
  1415. url: https://github.com/dandi/dandi-cli
  1416. version: 0.58.1
  1417. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1418. access:
  1419. - schemaKey: AccessRequirements
  1420. status: dandi:OpenAccess
  1421. blobDateModified: '2023-12-11T18:35:36-05:00'
  1422. contentSize: 238878159
  1423. contentUrl:
  1424. - https://api.dandiarchive.org/api/assets/26f087b2-f7da-4822-8de4-0ba789d18f04/download/
  1425. - https://dandiarchive-embargo.s3.amazonaws.com/000729/blobs/5a0/b46/5a0b4663-eddb-47f4-8fc3-83025775796c
  1426. dateModified: '2023-12-13T16:11:30.113171-05:00'
  1427. digest:
  1428. dandi:dandi-etag: cd882ecdc7fb726b9cda5422d952c8dd-4
  1429. dandi:sha2-256: f28df32e174ccfe7894dc62d0ae979d95394df2dfb534d9e0067f5ec588fae08
  1430. encodingFormat: application/gzip
  1431. id: dandiasset:26f087b2-f7da-4822-8de4-0ba789d18f04
  1432. identifier: 26f087b2-f7da-4822-8de4-0ba789d18f04
  1433. path: sub-243/dwi/sub-243_dwi.nii.gz
  1434. schemaKey: Asset
  1435. schemaVersion: 0.6.4
  1436. wasAttributedTo:
  1437. - identifier: '243'
  1438. schemaKey: Participant
  1439. wasGeneratedBy:
  1440. - description: Metadata generated by DANDI cli
  1441. endDate: '2023-12-13T16:11:26.421363-05:00'
  1442. id: urn:uuid:29900ce8-6298-4472-88cf-ff29c2b35c0d
  1443. name: Metadata generation
  1444. schemaKey: Activity
  1445. startDate: '2023-12-13T16:11:26.421363-05:00'
  1446. wasAssociatedWith:
  1447. - identifier: RRID:SCR_019009
  1448. name: DANDI Command Line Interface
  1449. schemaKey: Software
  1450. url: https://github.com/dandi/dandi-cli
  1451. version: 0.58.1
  1452. - description: Metadata generated by DANDI cli
  1453. endDate: '2023-12-13T16:11:30.113138-05:00'
  1454. id: urn:uuid:117e204e-9c4b-48a5-af33-a38e1a673e28
  1455. name: Metadata generation
  1456. schemaKey: Activity
  1457. startDate: '2023-12-13T16:11:30.113138-05:00'
  1458. wasAssociatedWith:
  1459. - identifier: RRID:SCR_019009
  1460. name: DANDI Command Line Interface
  1461. schemaKey: Software
  1462. url: https://github.com/dandi/dandi-cli
  1463. version: 0.58.1
  1464. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1465. access:
  1466. - schemaKey: AccessRequirements
  1467. status: dandi:OpenAccess
  1468. blobDateModified: '2023-12-13T12:20:23.531940-05:00'
  1469. contentSize: 509961490
  1470. contentUrl:
  1471. - https://api.dandiarchive.org/api/assets/cd770d16-a2e6-409c-9e9a-235a1cdba544/download/
  1472. - https://dandiarchive-embargo.s3.amazonaws.com/000729/blobs/206/592/20659205-19a7-4cdb-b02c-5f26744d4be0
  1473. dateModified: '2023-12-13T16:11:01.949939-05:00'
  1474. digest:
  1475. dandi:dandi-etag: 6c66449aada84a331c371401ca65ed02-8
  1476. dandi:sha2-256: 82398ac6b522bfbddd2d70c33ddf6448b2db88f9bf23fa15d080f3ba872fc15a
  1477. encodingFormat: application/gzip
  1478. id: dandiasset:cd770d16-a2e6-409c-9e9a-235a1cdba544
  1479. identifier: cd770d16-a2e6-409c-9e9a-235a1cdba544
  1480. path: derivatives/DWIprep_V.1.0/sub-256/sub-256_dwi-prephcpl.nii.gz
  1481. schemaKey: Asset
  1482. schemaVersion: 0.6.4
  1483. wasGeneratedBy:
  1484. - description: Metadata generated by DANDI cli
  1485. endDate: '2023-12-13T16:11:00.666217-05:00'
  1486. id: urn:uuid:76c44f33-2980-4b46-827c-862f46d4fafa
  1487. name: Metadata generation
  1488. schemaKey: Activity
  1489. startDate: '2023-12-13T16:11:00.666217-05:00'
  1490. wasAssociatedWith:
  1491. - identifier: RRID:SCR_019009
  1492. name: DANDI Command Line Interface
  1493. schemaKey: Software
  1494. url: https://github.com/dandi/dandi-cli
  1495. version: 0.58.1
  1496. - description: Metadata generated by DANDI cli
  1497. endDate: '2023-12-13T16:11:01.949903-05:00'
  1498. id: urn:uuid:9ac704c8-297c-40ad-9991-6080c2e41037
  1499. name: Metadata generation
  1500. schemaKey: Activity
  1501. startDate: '2023-12-13T16:11:01.949903-05:00'
  1502. wasAssociatedWith:
  1503. - identifier: RRID:SCR_019009
  1504. name: DANDI Command Line Interface
  1505. schemaKey: Software
  1506. url: https://github.com/dandi/dandi-cli
  1507. version: 0.58.1
  1508. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1509. access:
  1510. - schemaKey: AccessRequirements
  1511. status: dandi:OpenAccess
  1512. blobDateModified: '2023-12-11T14:49:14-05:00'
  1513. contentSize: 2126315872
  1514. contentUrl:
  1515. - https://api.dandiarchive.org/api/assets/6d508452-b26f-4c25-9236-25449b410860/download/
  1516. - https://dandiarchive-embargo.s3.amazonaws.com/000729/blobs/39c/cf7/39ccf77b-e848-45bd-b7dc-e1fea43bc043
  1517. dateModified: '2023-12-13T16:10:33.515084-05:00'
  1518. digest:
  1519. dandi:dandi-etag: f90f8603d46eaca5db1d5e3278a6302f-32
  1520. dandi:sha2-256: b9d4134d6bd86aa44d591ceeec715d47d2c2afe5d6576f4dcc5eeca3eadcb5a2
  1521. encodingFormat: application/octet-stream
  1522. id: dandiasset:6d508452-b26f-4c25-9236-25449b410860
  1523. identifier: 6d508452-b26f-4c25-9236-25449b410860
  1524. path: derivatives/DWIprep_V.1.0/sub-256/sub-256_dwi-prep.nii
  1525. schemaKey: Asset
  1526. schemaVersion: 0.6.4
  1527. wasGeneratedBy:
  1528. - description: Metadata generated by DANDI cli
  1529. endDate: '2023-12-13T16:10:04.293036-05:00'
  1530. id: urn:uuid:76674ab2-cb03-41c7-94a9-17c66e509dae
  1531. name: Metadata generation
  1532. schemaKey: Activity
  1533. startDate: '2023-12-13T16:10:04.293036-05:00'
  1534. wasAssociatedWith:
  1535. - identifier: RRID:SCR_019009
  1536. name: DANDI Command Line Interface
  1537. schemaKey: Software
  1538. url: https://github.com/dandi/dandi-cli
  1539. version: 0.58.1
  1540. - description: Metadata generated by DANDI cli
  1541. endDate: '2023-12-13T16:10:33.515050-05:00'
  1542. id: urn:uuid:b783db22-7997-4221-80a1-4b0f121d3654
  1543. name: Metadata generation
  1544. schemaKey: Activity
  1545. startDate: '2023-12-13T16:10:33.515050-05:00'
  1546. wasAssociatedWith:
  1547. - identifier: RRID:SCR_019009
  1548. name: DANDI Command Line Interface
  1549. schemaKey: Software
  1550. url: https://github.com/dandi/dandi-cli
  1551. version: 0.58.1
  1552. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1553. access:
  1554. - schemaKey: AccessRequirements
  1555. status: dandi:OpenAccess
  1556. blobDateModified: '2023-12-13T12:18:17.893273-05:00'
  1557. contentSize: 1529476491
  1558. contentUrl:
  1559. - https://api.dandiarchive.org/api/assets/3341e0a6-bb18-4aaf-9f75-1caaa4b26ef4/download/
  1560. - https://dandiarchive-embargo.s3.amazonaws.com/000729/blobs/a36/736/a3673687-e771-42a9-82da-c19933a7bd7f
  1561. dateModified: '2023-12-13T16:09:53.636060-05:00'
  1562. digest:
  1563. dandi:dandi-etag: 50a73d72112614f5e8b6fa31eb0ae16a-23
  1564. encodingFormat: application/gzip
  1565. id: dandiasset:3341e0a6-bb18-4aaf-9f75-1caaa4b26ef4
  1566. identifier: 3341e0a6-bb18-4aaf-9f75-1caaa4b26ef4
  1567. path: derivatives/DWIprep_V.1.0/sub-243/sub-243_dwi-prep.nii.gz
  1568. schemaKey: Asset
  1569. schemaVersion: 0.6.4
  1570. wasGeneratedBy:
  1571. - description: Metadata generated by DANDI cli
  1572. endDate: '2023-12-13T16:09:48.666248-05:00'
  1573. id: urn:uuid:df294873-be38-4252-a0e8-ae56e716bed3
  1574. name: Metadata generation
  1575. schemaKey: Activity
  1576. startDate: '2023-12-13T16:09:48.666248-05:00'
  1577. wasAssociatedWith:
  1578. - identifier: RRID:SCR_019009
  1579. name: DANDI Command Line Interface
  1580. schemaKey: Software
  1581. url: https://github.com/dandi/dandi-cli
  1582. version: 0.58.1
  1583. - description: Metadata generated by DANDI cli
  1584. endDate: '2023-12-13T16:09:53.636028-05:00'
  1585. id: urn:uuid:c6ba17c7-82d6-4cf5-82e6-d4f1ccf63c6b
  1586. name: Metadata generation
  1587. schemaKey: Activity
  1588. startDate: '2023-12-13T16:09:53.636028-05:00'
  1589. wasAssociatedWith:
  1590. - identifier: RRID:SCR_019009
  1591. name: DANDI Command Line Interface
  1592. schemaKey: Software
  1593. url: https://github.com/dandi/dandi-cli
  1594. version: 0.58.1
  1595. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1596. access:
  1597. - schemaKey: AccessRequirements
  1598. status: dandi:OpenAccess
  1599. blobDateModified: '2023-12-11T14:34:27.135623-05:00'
  1600. contentSize: 465154660
  1601. contentUrl:
  1602. - https://api.dandiarchive.org/api/assets/4aab0fb0-5207-4a4e-bd59-5dbd519ae656/download/
  1603. - https://dandiarchive-embargo.s3.amazonaws.com/000729/blobs/5d4/35e/5d435eaa-10f4-49fa-803b-1b1397b023d3
  1604. dateModified: '2023-12-13T16:12:29.705052-05:00'
  1605. digest:
  1606. dandi:dandi-etag: 99cea2b0e92f8feee4b6ff0422f9b851-7
  1607. encodingFormat: application/gzip
  1608. id: dandiasset:4aab0fb0-5207-4a4e-bd59-5dbd519ae656
  1609. identifier: 4aab0fb0-5207-4a4e-bd59-5dbd519ae656
  1610. path: sub-256/dwi/sub-256_dwi.nii.gz
  1611. schemaKey: Asset
  1612. schemaVersion: 0.6.4
  1613. wasAttributedTo:
  1614. - identifier: '256'
  1615. schemaKey: Participant
  1616. wasGeneratedBy:
  1617. - description: Metadata generated by DANDI cli
  1618. endDate: '2023-12-13T16:12:23.276825-05:00'
  1619. id: urn:uuid:3ae06b24-8fd2-4b31-84a7-6898647a5af2
  1620. name: Metadata generation
  1621. schemaKey: Activity
  1622. startDate: '2023-12-13T16:12:23.276825-05:00'
  1623. wasAssociatedWith:
  1624. - identifier: RRID:SCR_019009
  1625. name: DANDI Command Line Interface
  1626. schemaKey: Software
  1627. url: https://github.com/dandi/dandi-cli
  1628. version: 0.58.1
  1629. - description: Metadata generated by DANDI cli
  1630. endDate: '2023-12-13T16:12:29.705018-05:00'
  1631. id: urn:uuid:4cecc9b9-d863-4803-999e-4833c97ad963
  1632. name: Metadata generation
  1633. schemaKey: Activity
  1634. startDate: '2023-12-13T16:12:29.705018-05:00'
  1635. wasAssociatedWith:
  1636. - identifier: RRID:SCR_019009
  1637. name: DANDI Command Line Interface
  1638. schemaKey: Software
  1639. url: https://github.com/dandi/dandi-cli
  1640. version: 0.58.1
Tip!

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

Comments

Loading...