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 154 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
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
  1. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2. access:
  3. - schemaKey: AccessRequirements
  4. status: dandi:EmbargoedAccess
  5. blobDateModified: '2024-01-29T16:59:31.673662-05:00'
  6. contentSize: 360
  7. contentUrl:
  8. - https://api.dandiarchive.org/api/assets/d817fec0-cf29-4e80-bbc8-bf091661fc23/download/
  9. - https://dandiarchive.s3.amazonaws.com/blobs/076/d9c/076d9c91-9e14-451c-bad2-e5f8f5a65a1e
  10. dateModified: '2024-01-29T17:10:25.973205-05:00'
  11. digest:
  12. dandi:dandi-etag: d259510fd6c3b27b232e0b94ea48ac8f-1
  13. dandi:sha2-256: 6da2c35a9b142bfc56585c27ecf15e2d52e546495d152158c3cfa1d093aaeb67
  14. encodingFormat: application/json
  15. id: dandiasset:d817fec0-cf29-4e80-bbc8-bf091661fc23
  16. identifier: d817fec0-cf29-4e80-bbc8-bf091661fc23
  17. path: rawdata/sub-SP002/ses-MRI/anat/sub-SP002_ses-MRI_echo-1_flip-1_chunk-2_VFA.json
  18. schemaKey: Asset
  19. schemaVersion: 0.6.4
  20. wasAttributedTo:
  21. - identifier: SP002
  22. schemaKey: Participant
  23. wasGeneratedBy:
  24. - identifier: MRI
  25. name: MRI
  26. schemaKey: Session
  27. - description: Metadata generated by DANDI cli
  28. endDate: '2024-01-29T17:10:25.112007-05:00'
  29. id: urn:uuid:ed1cfdcb-f23e-4bdb-8c42-553bd3ef9115
  30. name: Metadata generation
  31. schemaKey: Activity
  32. startDate: '2024-01-29T17:10:25.112007-05:00'
  33. wasAssociatedWith:
  34. - identifier: RRID:SCR_019009
  35. name: DANDI Command Line Interface
  36. schemaKey: Software
  37. url: https://github.com/dandi/dandi-cli
  38. version: 0.59.0
  39. - description: Metadata generated by DANDI cli
  40. endDate: '2024-01-29T17:10:25.973155-05:00'
  41. id: urn:uuid:71832908-9933-453d-9b54-a3ebb4caf184
  42. name: Metadata generation
  43. schemaKey: Activity
  44. startDate: '2024-01-29T17:10:25.973155-05:00'
  45. wasAssociatedWith:
  46. - identifier: RRID:SCR_019009
  47. name: DANDI Command Line Interface
  48. schemaKey: Software
  49. url: https://github.com/dandi/dandi-cli
  50. version: 0.59.0
  51. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  52. access:
  53. - schemaKey: AccessRequirements
  54. status: dandi:EmbargoedAccess
  55. blobDateModified: '2024-01-29T17:01:58.309034-05:00'
  56. contentSize: 360
  57. contentUrl:
  58. - https://api.dandiarchive.org/api/assets/96e2a754-1c00-4753-8a27-a0af8c19fe01/download/
  59. - https://dandiarchive.s3.amazonaws.com/blobs/4db/e1c/4dbe1c86-abbc-4fca-abf7-b5888977eb69
  60. dateModified: '2024-01-29T17:10:26.933159-05:00'
  61. digest:
  62. dandi:dandi-etag: f66c1bcecec355a1f05a4db175a272b2-1
  63. dandi:sha2-256: 210d7063afb142f8c753c2e0cfa3b7038eccbafc82cbbdb1de342e5b4b91f54d
  64. encodingFormat: application/json
  65. id: dandiasset:96e2a754-1c00-4753-8a27-a0af8c19fe01
  66. identifier: 96e2a754-1c00-4753-8a27-a0af8c19fe01
  67. path: rawdata/sub-SP002/ses-MRI/anat/sub-SP002_ses-MRI_echo-1_flip-2_chunk-2_VFA.json
  68. schemaKey: Asset
  69. schemaVersion: 0.6.4
  70. wasAttributedTo:
  71. - identifier: SP002
  72. schemaKey: Participant
  73. wasGeneratedBy:
  74. - identifier: MRI
  75. name: MRI
  76. schemaKey: Session
  77. - description: Metadata generated by DANDI cli
  78. endDate: '2024-01-29T17:10:26.537252-05:00'
  79. id: urn:uuid:57158027-f96a-4478-b31b-f2134fd4d6b8
  80. name: Metadata generation
  81. schemaKey: Activity
  82. startDate: '2024-01-29T17:10:26.537252-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.59.0
  89. - description: Metadata generated by DANDI cli
  90. endDate: '2024-01-29T17:10:26.933123-05:00'
  91. id: urn:uuid:407215cc-2bb1-4bf6-a7ce-f495e9f1e74a
  92. name: Metadata generation
  93. schemaKey: Activity
  94. startDate: '2024-01-29T17:10:26.933123-05:00'
  95. wasAssociatedWith:
  96. - identifier: RRID:SCR_019009
  97. name: DANDI Command Line Interface
  98. schemaKey: Software
  99. url: https://github.com/dandi/dandi-cli
  100. version: 0.59.0
  101. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  102. access:
  103. - schemaKey: AccessRequirements
  104. status: dandi:EmbargoedAccess
  105. blobDateModified: '2024-01-29T17:02:07.884124-05:00'
  106. contentSize: 361
  107. contentUrl:
  108. - https://api.dandiarchive.org/api/assets/188e1f2e-10d9-4940-84b1-fbcf0255c9a1/download/
  109. - https://dandiarchive.s3.amazonaws.com/blobs/700/3f9/7003f9f6-5d30-452a-ae0a-ef11798dbbf2
  110. dateModified: '2024-01-29T17:10:29.723720-05:00'
  111. digest:
  112. dandi:dandi-etag: e42772ea0b1c08077e46796522bc4963-1
  113. dandi:sha2-256: 011d89350c55a878628ea6266a874f5d093c86bbc0498432e2185f837be56338
  114. encodingFormat: application/json
  115. id: dandiasset:188e1f2e-10d9-4940-84b1-fbcf0255c9a1
  116. identifier: 188e1f2e-10d9-4940-84b1-fbcf0255c9a1
  117. path: rawdata/sub-SP002/ses-MRI/anat/sub-SP002_ses-MRI_echo-1_flip-3_chunk-2_VFA.json
  118. schemaKey: Asset
  119. schemaVersion: 0.6.4
  120. wasAttributedTo:
  121. - identifier: SP002
  122. schemaKey: Participant
  123. wasGeneratedBy:
  124. - identifier: MRI
  125. name: MRI
  126. schemaKey: Session
  127. - description: Metadata generated by DANDI cli
  128. endDate: '2024-01-29T17:10:28.608764-05:00'
  129. id: urn:uuid:cbd01c9f-a72f-48b9-9c72-14aee23fd774
  130. name: Metadata generation
  131. schemaKey: Activity
  132. startDate: '2024-01-29T17:10:28.608764-05:00'
  133. wasAssociatedWith:
  134. - identifier: RRID:SCR_019009
  135. name: DANDI Command Line Interface
  136. schemaKey: Software
  137. url: https://github.com/dandi/dandi-cli
  138. version: 0.59.0
  139. - description: Metadata generated by DANDI cli
  140. endDate: '2024-01-29T17:10:29.723679-05:00'
  141. id: urn:uuid:c095220f-cef9-4272-a193-856e43c99b76
  142. name: Metadata generation
  143. schemaKey: Activity
  144. startDate: '2024-01-29T17:10:29.723679-05:00'
  145. wasAssociatedWith:
  146. - identifier: RRID:SCR_019009
  147. name: DANDI Command Line Interface
  148. schemaKey: Software
  149. url: https://github.com/dandi/dandi-cli
  150. version: 0.59.0
  151. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  152. access:
  153. - schemaKey: AccessRequirements
  154. status: dandi:EmbargoedAccess
  155. blobDateModified: '2024-01-29T17:02:14.781188-05:00'
  156. contentSize: 361
  157. contentUrl:
  158. - https://api.dandiarchive.org/api/assets/51de1ba8-5c5a-4b54-8562-07a0a6172e8a/download/
  159. - https://dandiarchive.s3.amazonaws.com/blobs/c57/c76/c57c7640-62d1-4a05-a764-6629c01ebb7b
  160. dateModified: '2024-01-29T17:10:29.779645-05:00'
  161. digest:
  162. dandi:dandi-etag: 8c83f48c6900365a88915b8a764ed660-1
  163. dandi:sha2-256: 1791e3858fb29bc326695cee71ac24bafec65f528d8ecaf5c74bd508088388ea
  164. encodingFormat: application/json
  165. id: dandiasset:51de1ba8-5c5a-4b54-8562-07a0a6172e8a
  166. identifier: 51de1ba8-5c5a-4b54-8562-07a0a6172e8a
  167. path: rawdata/sub-SP002/ses-MRI/anat/sub-SP002_ses-MRI_echo-1_flip-4_chunk-2_VFA.json
  168. schemaKey: Asset
  169. schemaVersion: 0.6.4
  170. wasAttributedTo:
  171. - identifier: SP002
  172. schemaKey: Participant
  173. wasGeneratedBy:
  174. - identifier: MRI
  175. name: MRI
  176. schemaKey: Session
  177. - description: Metadata generated by DANDI cli
  178. endDate: '2024-01-29T17:10:29.210755-05:00'
  179. id: urn:uuid:c3d98b3d-6baf-4f27-9f89-77a2454dbbba
  180. name: Metadata generation
  181. schemaKey: Activity
  182. startDate: '2024-01-29T17:10:29.210755-05:00'
  183. wasAssociatedWith:
  184. - identifier: RRID:SCR_019009
  185. name: DANDI Command Line Interface
  186. schemaKey: Software
  187. url: https://github.com/dandi/dandi-cli
  188. version: 0.59.0
  189. - description: Metadata generated by DANDI cli
  190. endDate: '2024-01-29T17:10:29.779607-05:00'
  191. id: urn:uuid:133c3231-4467-43cc-82d4-4b6dc26db46c
  192. name: Metadata generation
  193. schemaKey: Activity
  194. startDate: '2024-01-29T17:10:29.779607-05:00'
  195. wasAssociatedWith:
  196. - identifier: RRID:SCR_019009
  197. name: DANDI Command Line Interface
  198. schemaKey: Software
  199. url: https://github.com/dandi/dandi-cli
  200. version: 0.59.0
  201. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  202. access:
  203. - schemaKey: AccessRequirements
  204. status: dandi:EmbargoedAccess
  205. blobDateModified: '2024-01-29T17:02:23.981274-05:00'
  206. contentSize: 361
  207. contentUrl:
  208. - https://api.dandiarchive.org/api/assets/90cdeceb-b514-41a9-9370-7be194741118/download/
  209. - https://dandiarchive.s3.amazonaws.com/blobs/f78/1dc/f781dc34-7c71-448c-9ac6-a89b997ca50d
  210. dateModified: '2024-01-29T17:10:32.092568-05:00'
  211. digest:
  212. dandi:dandi-etag: 610c0c03cce55c16579c8666b34d20a2-1
  213. dandi:sha2-256: 4aa0e316fe536d522545aa6ce2fb7c871591ca364e6880b00037b991d52883eb
  214. encodingFormat: application/json
  215. id: dandiasset:90cdeceb-b514-41a9-9370-7be194741118
  216. identifier: 90cdeceb-b514-41a9-9370-7be194741118
  217. path: rawdata/sub-SP002/ses-MRI/anat/sub-SP002_ses-MRI_echo-1_flip-5_chunk-2_VFA.json
  218. schemaKey: Asset
  219. schemaVersion: 0.6.4
  220. wasAttributedTo:
  221. - identifier: SP002
  222. schemaKey: Participant
  223. wasGeneratedBy:
  224. - identifier: MRI
  225. name: MRI
  226. schemaKey: Session
  227. - description: Metadata generated by DANDI cli
  228. endDate: '2024-01-29T17:10:31.816396-05:00'
  229. id: urn:uuid:1ae781b7-9457-4146-b853-94323747f8c6
  230. name: Metadata generation
  231. schemaKey: Activity
  232. startDate: '2024-01-29T17:10:31.816396-05:00'
  233. wasAssociatedWith:
  234. - identifier: RRID:SCR_019009
  235. name: DANDI Command Line Interface
  236. schemaKey: Software
  237. url: https://github.com/dandi/dandi-cli
  238. version: 0.59.0
  239. - description: Metadata generated by DANDI cli
  240. endDate: '2024-01-29T17:10:32.092530-05:00'
  241. id: urn:uuid:c8c35a90-1b75-4448-951f-091dfa97cfaa
  242. name: Metadata generation
  243. schemaKey: Activity
  244. startDate: '2024-01-29T17:10:32.092530-05:00'
  245. wasAssociatedWith:
  246. - identifier: RRID:SCR_019009
  247. name: DANDI Command Line Interface
  248. schemaKey: Software
  249. url: https://github.com/dandi/dandi-cli
  250. version: 0.59.0
  251. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  252. access:
  253. - schemaKey: AccessRequirements
  254. status: dandi:EmbargoedAccess
  255. blobDateModified: '2020-11-19T13:22:42.694881-05:00'
  256. contentSize: 167011013
  257. contentUrl:
  258. - https://api.dandiarchive.org/api/assets/4cd89d4b-2008-486a-9b67-13c698573e0c/download/
  259. - https://dandiarchive.s3.amazonaws.com/blobs/625/4ad/6254ad3a-7e90-47d3-9dc2-b6996d0724db
  260. dateModified: '2024-01-29T17:10:28.045048-05:00'
  261. digest:
  262. dandi:dandi-etag: 8382951b97d2a0d702ba69e773ccd91f-3
  263. dandi:sha2-256: aa9541378bc20e3e6bf7a437e51b6cf1f74e816ee94fb82d24629108d85280f8
  264. encodingFormat: application/gzip
  265. id: dandiasset:4cd89d4b-2008-486a-9b67-13c698573e0c
  266. identifier: 4cd89d4b-2008-486a-9b67-13c698573e0c
  267. path: rawdata/sub-SP002/ses-MRI/anat/sub-SP002_ses-MRI_echo-1_flip-1_chunk-2_VFA.nii.gz
  268. schemaKey: Asset
  269. schemaVersion: 0.6.4
  270. wasAttributedTo:
  271. - identifier: SP002
  272. schemaKey: Participant
  273. wasGeneratedBy:
  274. - identifier: MRI
  275. name: MRI
  276. schemaKey: Session
  277. - description: Metadata generated by DANDI cli
  278. endDate: '2024-01-29T17:10:25.378060-05:00'
  279. id: urn:uuid:47383a00-a9e7-4697-8a7b-54ebdb4666e8
  280. name: Metadata generation
  281. schemaKey: Activity
  282. startDate: '2024-01-29T17:10:25.378060-05:00'
  283. wasAssociatedWith:
  284. - identifier: RRID:SCR_019009
  285. name: DANDI Command Line Interface
  286. schemaKey: Software
  287. url: https://github.com/dandi/dandi-cli
  288. version: 0.59.0
  289. - description: Metadata generated by DANDI cli
  290. endDate: '2024-01-29T17:10:28.044986-05:00'
  291. id: urn:uuid:47d24786-7a5c-4d58-9570-719e4bb0a68c
  292. name: Metadata generation
  293. schemaKey: Activity
  294. startDate: '2024-01-29T17:10:28.044986-05:00'
  295. wasAssociatedWith:
  296. - identifier: RRID:SCR_019009
  297. name: DANDI Command Line Interface
  298. schemaKey: Software
  299. url: https://github.com/dandi/dandi-cli
  300. version: 0.59.0
  301. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  302. access:
  303. - schemaKey: AccessRequirements
  304. status: dandi:EmbargoedAccess
  305. blobDateModified: '2024-01-29T17:02:32.669356-05:00'
  306. contentSize: 361
  307. contentUrl:
  308. - https://api.dandiarchive.org/api/assets/70f34371-fc0f-4f03-afcc-5204bc270492/download/
  309. - https://dandiarchive.s3.amazonaws.com/blobs/f83/beb/f83beb28-5f10-45cd-a054-07636cf8e5d5
  310. dateModified: '2024-01-29T17:10:49.027313-05:00'
  311. digest:
  312. dandi:dandi-etag: d239ba9426f6eb59190c9a5ac01d2aac-1
  313. dandi:sha2-256: 503383a721e467ae9d9c35b4727789ae8f75eb1889740610feb7543ba92fa2bc
  314. encodingFormat: application/json
  315. id: dandiasset:70f34371-fc0f-4f03-afcc-5204bc270492
  316. identifier: 70f34371-fc0f-4f03-afcc-5204bc270492
  317. path: rawdata/sub-SP002/ses-MRI/anat/sub-SP002_ses-MRI_echo-1_flip-6_chunk-2_VFA.json
  318. schemaKey: Asset
  319. schemaVersion: 0.6.4
  320. wasAttributedTo:
  321. - identifier: SP002
  322. schemaKey: Participant
  323. wasGeneratedBy:
  324. - identifier: MRI
  325. name: MRI
  326. schemaKey: Session
  327. - description: Metadata generated by DANDI cli
  328. endDate: '2024-01-29T17:10:48.743420-05:00'
  329. id: urn:uuid:ec67ac8c-f162-4d18-a3d7-84a10d8f167f
  330. name: Metadata generation
  331. schemaKey: Activity
  332. startDate: '2024-01-29T17:10:48.743420-05:00'
  333. wasAssociatedWith:
  334. - identifier: RRID:SCR_019009
  335. name: DANDI Command Line Interface
  336. schemaKey: Software
  337. url: https://github.com/dandi/dandi-cli
  338. version: 0.59.0
  339. - description: Metadata generated by DANDI cli
  340. endDate: '2024-01-29T17:10:49.027280-05:00'
  341. id: urn:uuid:fb0201d8-5f35-481f-af8b-93d1c2d659af
  342. name: Metadata generation
  343. schemaKey: Activity
  344. startDate: '2024-01-29T17:10:49.027280-05:00'
  345. wasAssociatedWith:
  346. - identifier: RRID:SCR_019009
  347. name: DANDI Command Line Interface
  348. schemaKey: Software
  349. url: https://github.com/dandi/dandi-cli
  350. version: 0.59.0
  351. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  352. access:
  353. - schemaKey: AccessRequirements
  354. status: dandi:EmbargoedAccess
  355. blobDateModified: '2020-11-19T13:21:22.424641-05:00'
  356. contentSize: 163607862
  357. contentUrl:
  358. - https://api.dandiarchive.org/api/assets/2faeb937-1acf-43b3-b862-56a92024a17a/download/
  359. - https://dandiarchive.s3.amazonaws.com/blobs/166/ec8/166ec8cd-43dc-4657-be1b-55d252e23943
  360. dateModified: '2024-01-29T17:10:35.680529-05:00'
  361. digest:
  362. dandi:dandi-etag: db37e7584a8920a2066209903ee3beb1-3
  363. dandi:sha2-256: 446c04e2aebf9b0463fd628ff927caea1473f737be0da1d394a6b7e43e68c203
  364. encodingFormat: application/gzip
  365. id: dandiasset:2faeb937-1acf-43b3-b862-56a92024a17a
  366. identifier: 2faeb937-1acf-43b3-b862-56a92024a17a
  367. path: rawdata/sub-SP002/ses-MRI/anat/sub-SP002_ses-MRI_echo-1_flip-5_chunk-2_VFA.nii.gz
  368. schemaKey: Asset
  369. schemaVersion: 0.6.4
  370. wasAttributedTo:
  371. - identifier: SP002
  372. schemaKey: Participant
  373. wasGeneratedBy:
  374. - identifier: MRI
  375. name: MRI
  376. schemaKey: Session
  377. - description: Metadata generated by DANDI cli
  378. endDate: '2024-01-29T17:10:33.467015-05:00'
  379. id: urn:uuid:2c7f43d8-9c15-4066-8a7e-df4abcf93084
  380. name: Metadata generation
  381. schemaKey: Activity
  382. startDate: '2024-01-29T17:10:33.467015-05:00'
  383. wasAssociatedWith:
  384. - identifier: RRID:SCR_019009
  385. name: DANDI Command Line Interface
  386. schemaKey: Software
  387. url: https://github.com/dandi/dandi-cli
  388. version: 0.59.0
  389. - description: Metadata generated by DANDI cli
  390. endDate: '2024-01-29T17:10:35.680494-05:00'
  391. id: urn:uuid:99fe2464-6f22-480f-9e73-ace815a2390c
  392. name: Metadata generation
  393. schemaKey: Activity
  394. startDate: '2024-01-29T17:10:35.680494-05:00'
  395. wasAssociatedWith:
  396. - identifier: RRID:SCR_019009
  397. name: DANDI Command Line Interface
  398. schemaKey: Software
  399. url: https://github.com/dandi/dandi-cli
  400. version: 0.59.0
  401. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  402. access:
  403. - schemaKey: AccessRequirements
  404. status: dandi:EmbargoedAccess
  405. blobDateModified: '2024-01-29T17:02:40.302427-05:00'
  406. contentSize: 361
  407. contentUrl:
  408. - https://api.dandiarchive.org/api/assets/1fe377d0-d8c5-4eec-b7f3-805bf11e2594/download/
  409. - https://dandiarchive.s3.amazonaws.com/blobs/cdd/ec6/cddec603-79a9-4998-af75-1f63badc2eb2
  410. dateModified: '2024-01-29T17:11:01.314941-05:00'
  411. digest:
  412. dandi:dandi-etag: 57b2af85282e4f8a63cd8eb6582e5e2c-1
  413. dandi:sha2-256: 42d6c28da2c4a476924a3ff5c5ecf2727b0582963a836b57686bb13ae9923226
  414. encodingFormat: application/json
  415. id: dandiasset:1fe377d0-d8c5-4eec-b7f3-805bf11e2594
  416. identifier: 1fe377d0-d8c5-4eec-b7f3-805bf11e2594
  417. path: rawdata/sub-SP002/ses-MRI/anat/sub-SP002_ses-MRI_echo-1_flip-7_chunk-2_VFA.json
  418. schemaKey: Asset
  419. schemaVersion: 0.6.4
  420. wasAttributedTo:
  421. - identifier: SP002
  422. schemaKey: Participant
  423. wasGeneratedBy:
  424. - identifier: MRI
  425. name: MRI
  426. schemaKey: Session
  427. - description: Metadata generated by DANDI cli
  428. endDate: '2024-01-29T17:11:01.083943-05:00'
  429. id: urn:uuid:78e05f04-2e74-4929-821d-cfa5be6ed73f
  430. name: Metadata generation
  431. schemaKey: Activity
  432. startDate: '2024-01-29T17:11:01.083943-05:00'
  433. wasAssociatedWith:
  434. - identifier: RRID:SCR_019009
  435. name: DANDI Command Line Interface
  436. schemaKey: Software
  437. url: https://github.com/dandi/dandi-cli
  438. version: 0.59.0
  439. - description: Metadata generated by DANDI cli
  440. endDate: '2024-01-29T17:11:01.314913-05:00'
  441. id: urn:uuid:213b4313-65db-4361-9ca4-a9ecbd57e02f
  442. name: Metadata generation
  443. schemaKey: Activity
  444. startDate: '2024-01-29T17:11:01.314913-05:00'
  445. wasAssociatedWith:
  446. - identifier: RRID:SCR_019009
  447. name: DANDI Command Line Interface
  448. schemaKey: Software
  449. url: https://github.com/dandi/dandi-cli
  450. version: 0.59.0
  451. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  452. access:
  453. - schemaKey: AccessRequirements
  454. status: dandi:EmbargoedAccess
  455. blobDateModified: '2020-11-19T13:13:31.214226-05:00'
  456. contentSize: 163430542
  457. contentUrl:
  458. - https://api.dandiarchive.org/api/assets/76538de7-b93d-4088-a769-8a3d7b932eb7/download/
  459. - https://dandiarchive.s3.amazonaws.com/blobs/4ca/c97/4cac9770-fce4-4ad6-b86e-4c4985dc4df7
  460. dateModified: '2024-01-29T17:10:32.284987-05:00'
  461. digest:
  462. dandi:dandi-etag: fba053e01a47a05c396742ff6e73b739-3
  463. dandi:sha2-256: b8f62efdceb000fa2dc40e6611cf80935d8a6c51cbf742422b5e95e0847b9d74
  464. encodingFormat: application/gzip
  465. id: dandiasset:76538de7-b93d-4088-a769-8a3d7b932eb7
  466. identifier: 76538de7-b93d-4088-a769-8a3d7b932eb7
  467. path: rawdata/sub-SP002/ses-MRI/anat/sub-SP002_ses-MRI_echo-1_flip-2_chunk-2_VFA.nii.gz
  468. schemaKey: Asset
  469. schemaVersion: 0.6.4
  470. wasAttributedTo:
  471. - identifier: SP002
  472. schemaKey: Participant
  473. wasGeneratedBy:
  474. - identifier: MRI
  475. name: MRI
  476. schemaKey: Session
  477. - description: Metadata generated by DANDI cli
  478. endDate: '2024-01-29T17:10:28.514480-05:00'
  479. id: urn:uuid:3836a136-14a6-40d9-9dcf-3d1d2d2084d5
  480. name: Metadata generation
  481. schemaKey: Activity
  482. startDate: '2024-01-29T17:10:28.514480-05:00'
  483. wasAssociatedWith:
  484. - identifier: RRID:SCR_019009
  485. name: DANDI Command Line Interface
  486. schemaKey: Software
  487. url: https://github.com/dandi/dandi-cli
  488. version: 0.59.0
  489. - description: Metadata generated by DANDI cli
  490. endDate: '2024-01-29T17:10:32.284946-05:00'
  491. id: urn:uuid:2faf5615-28af-435a-865f-9757ebacd015
  492. name: Metadata generation
  493. schemaKey: Activity
  494. startDate: '2024-01-29T17:10:32.284946-05:00'
  495. wasAssociatedWith:
  496. - identifier: RRID:SCR_019009
  497. name: DANDI Command Line Interface
  498. schemaKey: Software
  499. url: https://github.com/dandi/dandi-cli
  500. version: 0.59.0
  501. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  502. access:
  503. - schemaKey: AccessRequirements
  504. status: dandi:EmbargoedAccess
  505. blobDateModified: '2020-11-19T13:15:22.687558-05:00'
  506. contentSize: 161339186
  507. contentUrl:
  508. - https://api.dandiarchive.org/api/assets/ec5767e6-031b-4718-8835-af337b801291/download/
  509. - https://dandiarchive.s3.amazonaws.com/blobs/eb0/e23/eb0e23b5-291a-43eb-87da-6c85cf523fab
  510. dateModified: '2024-01-29T17:10:52.197641-05:00'
  511. digest:
  512. dandi:dandi-etag: 6e4fed97d0144a184631fd4c36409dd6-3
  513. dandi:sha2-256: cf061611c1182725c760847f6ca1bcff213a37c983d610a3ad72e86ca21ac362
  514. encodingFormat: application/gzip
  515. id: dandiasset:ec5767e6-031b-4718-8835-af337b801291
  516. identifier: ec5767e6-031b-4718-8835-af337b801291
  517. path: rawdata/sub-SP002/ses-MRI/anat/sub-SP002_ses-MRI_echo-1_flip-6_chunk-2_VFA.nii.gz
  518. schemaKey: Asset
  519. schemaVersion: 0.6.4
  520. wasAttributedTo:
  521. - identifier: SP002
  522. schemaKey: Participant
  523. wasGeneratedBy:
  524. - identifier: MRI
  525. name: MRI
  526. schemaKey: Session
  527. - description: Metadata generated by DANDI cli
  528. endDate: '2024-01-29T17:10:50.115243-05:00'
  529. id: urn:uuid:fd8a863e-9a2f-4ea7-8c66-9da3db3ae735
  530. name: Metadata generation
  531. schemaKey: Activity
  532. startDate: '2024-01-29T17:10:50.115243-05:00'
  533. wasAssociatedWith:
  534. - identifier: RRID:SCR_019009
  535. name: DANDI Command Line Interface
  536. schemaKey: Software
  537. url: https://github.com/dandi/dandi-cli
  538. version: 0.59.0
  539. - description: Metadata generated by DANDI cli
  540. endDate: '2024-01-29T17:10:52.197499-05:00'
  541. id: urn:uuid:cdd86cbb-f931-4acb-8ea6-3a60a989c61e
  542. name: Metadata generation
  543. schemaKey: Activity
  544. startDate: '2024-01-29T17:10:52.197499-05:00'
  545. wasAssociatedWith:
  546. - identifier: RRID:SCR_019009
  547. name: DANDI Command Line Interface
  548. schemaKey: Software
  549. url: https://github.com/dandi/dandi-cli
  550. version: 0.59.0
  551. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  552. access:
  553. - schemaKey: AccessRequirements
  554. status: dandi:EmbargoedAccess
  555. blobDateModified: '2020-11-19T13:13:36.825243-05:00'
  556. contentSize: 161806883
  557. contentUrl:
  558. - https://api.dandiarchive.org/api/assets/30cd76d7-d248-4585-81da-4863e828c768/download/
  559. - https://dandiarchive.s3.amazonaws.com/blobs/b4b/d11/b4bd11f7-6e9d-4335-b230-a7d2c822ad35
  560. dateModified: '2024-01-29T17:10:32.618778-05:00'
  561. digest:
  562. dandi:dandi-etag: 79c05ff82b433fe1a3e33e5150c3e490-3
  563. dandi:sha2-256: 8735fecabf53094f67696add74bb70d55a372aecb26a87b2823651bd59697eec
  564. encodingFormat: application/gzip
  565. id: dandiasset:30cd76d7-d248-4585-81da-4863e828c768
  566. identifier: 30cd76d7-d248-4585-81da-4863e828c768
  567. path: rawdata/sub-SP002/ses-MRI/anat/sub-SP002_ses-MRI_echo-1_flip-3_chunk-2_VFA.nii.gz
  568. schemaKey: Asset
  569. schemaVersion: 0.6.4
  570. wasAttributedTo:
  571. - identifier: SP002
  572. schemaKey: Participant
  573. wasGeneratedBy:
  574. - identifier: MRI
  575. name: MRI
  576. schemaKey: Session
  577. - description: Metadata generated by DANDI cli
  578. endDate: '2024-01-29T17:10:29.096819-05:00'
  579. id: urn:uuid:f6b29982-5075-4a3d-a061-03c17f16b769
  580. name: Metadata generation
  581. schemaKey: Activity
  582. startDate: '2024-01-29T17:10:29.096819-05:00'
  583. wasAssociatedWith:
  584. - identifier: RRID:SCR_019009
  585. name: DANDI Command Line Interface
  586. schemaKey: Software
  587. url: https://github.com/dandi/dandi-cli
  588. version: 0.59.0
  589. - description: Metadata generated by DANDI cli
  590. endDate: '2024-01-29T17:10:32.618734-05:00'
  591. id: urn:uuid:ab2a431d-ff1b-4962-be2e-f2af53a2ba1d
  592. name: Metadata generation
  593. schemaKey: Activity
  594. startDate: '2024-01-29T17:10:32.618734-05:00'
  595. wasAssociatedWith:
  596. - identifier: RRID:SCR_019009
  597. name: DANDI Command Line Interface
  598. schemaKey: Software
  599. url: https://github.com/dandi/dandi-cli
  600. version: 0.59.0
  601. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  602. access:
  603. - schemaKey: AccessRequirements
  604. status: dandi:EmbargoedAccess
  605. blobDateModified: '2024-01-29T17:02:53.926555-05:00'
  606. contentSize: 360
  607. contentUrl:
  608. - https://api.dandiarchive.org/api/assets/1f64999c-4aa3-4c8e-b51f-d62131d8c21f/download/
  609. - https://dandiarchive.s3.amazonaws.com/blobs/5c1/962/5c196270-794a-4b87-8044-ed1b81355577
  610. dateModified: '2024-01-29T17:11:54.012963-05:00'
  611. digest:
  612. dandi:dandi-etag: e2a847d82556a73c8a91741df5b365fa-1
  613. dandi:sha2-256: 825b209f3a1be0a0ff5a924003fdb4a6dfa21e1e7b77ada093e1b77b40213857
  614. encodingFormat: application/json
  615. id: dandiasset:1f64999c-4aa3-4c8e-b51f-d62131d8c21f
  616. identifier: 1f64999c-4aa3-4c8e-b51f-d62131d8c21f
  617. path: rawdata/sub-SP002/ses-MRI/anat/sub-SP002_ses-MRI_echo-2_flip-2_chunk-2_VFA.json
  618. schemaKey: Asset
  619. schemaVersion: 0.6.4
  620. wasAttributedTo:
  621. - identifier: SP002
  622. schemaKey: Participant
  623. wasGeneratedBy:
  624. - identifier: MRI
  625. name: MRI
  626. schemaKey: Session
  627. - description: Metadata generated by DANDI cli
  628. endDate: '2024-01-29T17:11:53.742725-05:00'
  629. id: urn:uuid:759a0253-934c-4576-a02f-c4aee851ca0d
  630. name: Metadata generation
  631. schemaKey: Activity
  632. startDate: '2024-01-29T17:11:53.742725-05:00'
  633. wasAssociatedWith:
  634. - identifier: RRID:SCR_019009
  635. name: DANDI Command Line Interface
  636. schemaKey: Software
  637. url: https://github.com/dandi/dandi-cli
  638. version: 0.59.0
  639. - description: Metadata generated by DANDI cli
  640. endDate: '2024-01-29T17:11:54.012937-05:00'
  641. id: urn:uuid:f7fe2fb0-5ee3-488c-aa6a-895e2710d6c3
  642. name: Metadata generation
  643. schemaKey: Activity
  644. startDate: '2024-01-29T17:11:54.012937-05:00'
  645. wasAssociatedWith:
  646. - identifier: RRID:SCR_019009
  647. name: DANDI Command Line Interface
  648. schemaKey: Software
  649. url: https://github.com/dandi/dandi-cli
  650. version: 0.59.0
  651. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  652. access:
  653. - schemaKey: AccessRequirements
  654. status: dandi:EmbargoedAccess
  655. blobDateModified: '2020-11-19T13:19:14.852256-05:00'
  656. contentSize: 157868954
  657. contentUrl:
  658. - https://api.dandiarchive.org/api/assets/747f07e6-4491-42fc-9313-876f908e82d4/download/
  659. - https://dandiarchive.s3.amazonaws.com/blobs/f32/c81/f32c81af-2795-4a8e-8896-193df2d3fb71
  660. dateModified: '2024-01-29T17:10:34.178979-05:00'
  661. digest:
  662. dandi:dandi-etag: 9b820349c1bfd26301d3ef184a33a29d-3
  663. dandi:sha2-256: b8faa0a98fc75f875e2f2484e80cef312e4386ae40a5a45fb2eb86fbf271d6fb
  664. encodingFormat: application/gzip
  665. id: dandiasset:747f07e6-4491-42fc-9313-876f908e82d4
  666. identifier: 747f07e6-4491-42fc-9313-876f908e82d4
  667. path: rawdata/sub-SP002/ses-MRI/anat/sub-SP002_ses-MRI_echo-1_flip-4_chunk-2_VFA.nii.gz
  668. schemaKey: Asset
  669. schemaVersion: 0.6.4
  670. wasAttributedTo:
  671. - identifier: SP002
  672. schemaKey: Participant
  673. wasGeneratedBy:
  674. - identifier: MRI
  675. name: MRI
  676. schemaKey: Session
  677. - description: Metadata generated by DANDI cli
  678. endDate: '2024-01-29T17:10:31.213060-05:00'
  679. id: urn:uuid:9a6dcbd0-b479-474f-be36-ebb4e7f96991
  680. name: Metadata generation
  681. schemaKey: Activity
  682. startDate: '2024-01-29T17:10:31.213060-05:00'
  683. wasAssociatedWith:
  684. - identifier: RRID:SCR_019009
  685. name: DANDI Command Line Interface
  686. schemaKey: Software
  687. url: https://github.com/dandi/dandi-cli
  688. version: 0.59.0
  689. - description: Metadata generated by DANDI cli
  690. endDate: '2024-01-29T17:10:34.178936-05:00'
  691. id: urn:uuid:49fa143e-63c3-4ee5-955a-642aab42e1a7
  692. name: Metadata generation
  693. schemaKey: Activity
  694. startDate: '2024-01-29T17:10:34.178936-05:00'
  695. wasAssociatedWith:
  696. - identifier: RRID:SCR_019009
  697. name: DANDI Command Line Interface
  698. schemaKey: Software
  699. url: https://github.com/dandi/dandi-cli
  700. version: 0.59.0
  701. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  702. access:
  703. - schemaKey: AccessRequirements
  704. status: dandi:EmbargoedAccess
  705. blobDateModified: '2024-01-29T17:03:21.647814-05:00'
  706. contentSize: 361
  707. contentUrl:
  708. - https://api.dandiarchive.org/api/assets/ad835e9d-a71b-4437-a79c-6bb869ad5b7c/download/
  709. - https://dandiarchive.s3.amazonaws.com/blobs/fbd/784/fbd78498-5a00-4783-9265-38b3b6f1bd94
  710. dateModified: '2024-01-29T17:11:56.016300-05:00'
  711. digest:
  712. dandi:dandi-etag: 31e514cb112b7a6b86b69595091148c1-1
  713. dandi:sha2-256: deaa3f587f63d0a882330c61a12b77e1a411d9745989f26e85d51337a9211639
  714. encodingFormat: application/json
  715. id: dandiasset:ad835e9d-a71b-4437-a79c-6bb869ad5b7c
  716. identifier: ad835e9d-a71b-4437-a79c-6bb869ad5b7c
  717. path: rawdata/sub-SP002/ses-MRI/anat/sub-SP002_ses-MRI_echo-2_flip-3_chunk-2_VFA.json
  718. schemaKey: Asset
  719. schemaVersion: 0.6.4
  720. wasAttributedTo:
  721. - identifier: SP002
  722. schemaKey: Participant
  723. wasGeneratedBy:
  724. - identifier: MRI
  725. name: MRI
  726. schemaKey: Session
  727. - description: Metadata generated by DANDI cli
  728. endDate: '2024-01-29T17:11:55.766139-05:00'
  729. id: urn:uuid:f4b46030-f925-4b04-a73b-03a14f8119fe
  730. name: Metadata generation
  731. schemaKey: Activity
  732. startDate: '2024-01-29T17:11:55.766139-05:00'
  733. wasAssociatedWith:
  734. - identifier: RRID:SCR_019009
  735. name: DANDI Command Line Interface
  736. schemaKey: Software
  737. url: https://github.com/dandi/dandi-cli
  738. version: 0.59.0
  739. - description: Metadata generated by DANDI cli
  740. endDate: '2024-01-29T17:11:56.016267-05:00'
  741. id: urn:uuid:7468bfbb-0c26-459f-bbd8-2e32235ef773
  742. name: Metadata generation
  743. schemaKey: Activity
  744. startDate: '2024-01-29T17:11:56.016267-05:00'
  745. wasAssociatedWith:
  746. - identifier: RRID:SCR_019009
  747. name: DANDI Command Line Interface
  748. schemaKey: Software
  749. url: https://github.com/dandi/dandi-cli
  750. version: 0.59.0
  751. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  752. access:
  753. - schemaKey: AccessRequirements
  754. status: dandi:EmbargoedAccess
  755. blobDateModified: '2024-01-29T17:02:46.918489-05:00'
  756. contentSize: 360
  757. contentUrl:
  758. - https://api.dandiarchive.org/api/assets/1adf0f54-f7ac-4cc4-ad62-c166eb6098bf/download/
  759. - https://dandiarchive.s3.amazonaws.com/blobs/78b/fa5/78bfa5d1-0120-4638-935c-00a2bdba8c80
  760. dateModified: '2024-01-29T17:11:39.473087-05:00'
  761. digest:
  762. dandi:dandi-etag: d9a8086edcb72ff089a4ba317d174315-1
  763. dandi:sha2-256: 84a5c02342276b81fc7a76e40c5373dc4020935f13d3cd4c68fec1987e8d15a0
  764. encodingFormat: application/json
  765. id: dandiasset:1adf0f54-f7ac-4cc4-ad62-c166eb6098bf
  766. identifier: 1adf0f54-f7ac-4cc4-ad62-c166eb6098bf
  767. path: rawdata/sub-SP002/ses-MRI/anat/sub-SP002_ses-MRI_echo-2_flip-1_chunk-2_VFA.json
  768. schemaKey: Asset
  769. schemaVersion: 0.6.4
  770. wasAttributedTo:
  771. - identifier: SP002
  772. schemaKey: Participant
  773. wasGeneratedBy:
  774. - identifier: MRI
  775. name: MRI
  776. schemaKey: Session
  777. - description: Metadata generated by DANDI cli
  778. endDate: '2024-01-29T17:11:39.272659-05:00'
  779. id: urn:uuid:aa4f8c83-2712-45d4-9a84-a05eff5f0d32
  780. name: Metadata generation
  781. schemaKey: Activity
  782. startDate: '2024-01-29T17:11:39.272659-05:00'
  783. wasAssociatedWith:
  784. - identifier: RRID:SCR_019009
  785. name: DANDI Command Line Interface
  786. schemaKey: Software
  787. url: https://github.com/dandi/dandi-cli
  788. version: 0.59.0
  789. - description: Metadata generated by DANDI cli
  790. endDate: '2024-01-29T17:11:39.473052-05:00'
  791. id: urn:uuid:52efb6a6-2a9f-4a31-b7ca-0bd7a177d0c4
  792. name: Metadata generation
  793. schemaKey: Activity
  794. startDate: '2024-01-29T17:11:39.473052-05:00'
  795. wasAssociatedWith:
  796. - identifier: RRID:SCR_019009
  797. name: DANDI Command Line Interface
  798. schemaKey: Software
  799. url: https://github.com/dandi/dandi-cli
  800. version: 0.59.0
  801. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  802. access:
  803. - schemaKey: AccessRequirements
  804. status: dandi:EmbargoedAccess
  805. blobDateModified: '2024-01-29T17:03:29.191885-05:00'
  806. contentSize: 361
  807. contentUrl:
  808. - https://api.dandiarchive.org/api/assets/c017161c-c194-4ef8-8891-816f54ade174/download/
  809. - https://dandiarchive.s3.amazonaws.com/blobs/ff1/ca3/ff1ca3ca-cde8-432b-9429-1c36c5a5f8b9
  810. dateModified: '2024-01-29T17:12:15.517675-05:00'
  811. digest:
  812. dandi:dandi-etag: 7eb7cd9a990db58e2043c17be9500e7d-1
  813. dandi:sha2-256: 6e038d35113f7f9840e4c8958b2904f4e0c704e76387b14d5c0b3cea3cfe555c
  814. encodingFormat: application/json
  815. id: dandiasset:c017161c-c194-4ef8-8891-816f54ade174
  816. identifier: c017161c-c194-4ef8-8891-816f54ade174
  817. path: rawdata/sub-SP002/ses-MRI/anat/sub-SP002_ses-MRI_echo-2_flip-4_chunk-2_VFA.json
  818. schemaKey: Asset
  819. schemaVersion: 0.6.4
  820. wasAttributedTo:
  821. - identifier: SP002
  822. schemaKey: Participant
  823. wasGeneratedBy:
  824. - identifier: MRI
  825. name: MRI
  826. schemaKey: Session
  827. - description: Metadata generated by DANDI cli
  828. endDate: '2024-01-29T17:12:15.281469-05:00'
  829. id: urn:uuid:36349e62-b612-4a2f-9e01-230e6f7c7d7d
  830. name: Metadata generation
  831. schemaKey: Activity
  832. startDate: '2024-01-29T17:12:15.281469-05:00'
  833. wasAssociatedWith:
  834. - identifier: RRID:SCR_019009
  835. name: DANDI Command Line Interface
  836. schemaKey: Software
  837. url: https://github.com/dandi/dandi-cli
  838. version: 0.59.0
  839. - description: Metadata generated by DANDI cli
  840. endDate: '2024-01-29T17:12:15.517620-05:00'
  841. id: urn:uuid:4f931e5f-4a81-42c9-9777-64f889a4297e
  842. name: Metadata generation
  843. schemaKey: Activity
  844. startDate: '2024-01-29T17:12:15.517620-05:00'
  845. wasAssociatedWith:
  846. - identifier: RRID:SCR_019009
  847. name: DANDI Command Line Interface
  848. schemaKey: Software
  849. url: https://github.com/dandi/dandi-cli
  850. version: 0.59.0
  851. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  852. access:
  853. - schemaKey: AccessRequirements
  854. status: dandi:EmbargoedAccess
  855. blobDateModified: '2020-11-19T13:21:14.248617-05:00'
  856. contentSize: 177024478
  857. contentUrl:
  858. - https://api.dandiarchive.org/api/assets/ca3017bd-d8d1-41f7-a2ca-ba1a007bdd62/download/
  859. - https://dandiarchive.s3.amazonaws.com/blobs/692/f1b/692f1bff-78cb-4e5a-8abf-0fc0aa6e0174
  860. dateModified: '2024-01-29T17:11:59.497074-05:00'
  861. digest:
  862. dandi:dandi-etag: 8dea2d2bc1da3b9c70c597dbb1ef736a-3
  863. dandi:sha2-256: 24937830d687da7f603ebd364377d43505c564a93a7da118edca422ea83455fa
  864. encodingFormat: application/gzip
  865. id: dandiasset:ca3017bd-d8d1-41f7-a2ca-ba1a007bdd62
  866. identifier: ca3017bd-d8d1-41f7-a2ca-ba1a007bdd62
  867. path: rawdata/sub-SP002/ses-MRI/anat/sub-SP002_ses-MRI_echo-2_flip-3_chunk-2_VFA.nii.gz
  868. schemaKey: Asset
  869. schemaVersion: 0.6.4
  870. wasAttributedTo:
  871. - identifier: SP002
  872. schemaKey: Participant
  873. wasGeneratedBy:
  874. - identifier: MRI
  875. name: MRI
  876. schemaKey: Session
  877. - description: Metadata generated by DANDI cli
  878. endDate: '2024-01-29T17:11:57.250440-05:00'
  879. id: urn:uuid:f9ea9a51-01ed-43d1-ade7-658ad303f192
  880. name: Metadata generation
  881. schemaKey: Activity
  882. startDate: '2024-01-29T17:11:57.250440-05:00'
  883. wasAssociatedWith:
  884. - identifier: RRID:SCR_019009
  885. name: DANDI Command Line Interface
  886. schemaKey: Software
  887. url: https://github.com/dandi/dandi-cli
  888. version: 0.59.0
  889. - description: Metadata generated by DANDI cli
  890. endDate: '2024-01-29T17:11:59.496964-05:00'
  891. id: urn:uuid:1ea13c9b-7c32-4151-a858-ec3d7a72031b
  892. name: Metadata generation
  893. schemaKey: Activity
  894. startDate: '2024-01-29T17:11:59.496964-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.59.0
  901. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  902. access:
  903. - schemaKey: AccessRequirements
  904. status: dandi:EmbargoedAccess
  905. blobDateModified: '2024-01-29T17:03:39.111977-05:00'
  906. contentSize: 361
  907. contentUrl:
  908. - https://api.dandiarchive.org/api/assets/39b0d0dc-bbe4-4a26-b2bb-f1df22a3054c/download/
  909. - https://dandiarchive.s3.amazonaws.com/blobs/188/bfd/188bfd6b-9d39-4902-9045-d6e28ea2eeda
  910. dateModified: '2024-01-29T17:12:18.794009-05:00'
  911. digest:
  912. dandi:dandi-etag: 2ee5c20cd0e7f67d2b107bfa7975ba4f-1
  913. dandi:sha2-256: c89c578c39ab1609e33dfe1cc4678e6073f2257ed9d26538ef3860779b99454a
  914. encodingFormat: application/json
  915. id: dandiasset:39b0d0dc-bbe4-4a26-b2bb-f1df22a3054c
  916. identifier: 39b0d0dc-bbe4-4a26-b2bb-f1df22a3054c
  917. path: rawdata/sub-SP002/ses-MRI/anat/sub-SP002_ses-MRI_echo-2_flip-5_chunk-2_VFA.json
  918. schemaKey: Asset
  919. schemaVersion: 0.6.4
  920. wasAttributedTo:
  921. - identifier: SP002
  922. schemaKey: Participant
  923. wasGeneratedBy:
  924. - identifier: MRI
  925. name: MRI
  926. schemaKey: Session
  927. - description: Metadata generated by DANDI cli
  928. endDate: '2024-01-29T17:12:18.517311-05:00'
  929. id: urn:uuid:d3107a92-9e4e-4731-a615-50687bb3f39c
  930. name: Metadata generation
  931. schemaKey: Activity
  932. startDate: '2024-01-29T17:12:18.517311-05:00'
  933. wasAssociatedWith:
  934. - identifier: RRID:SCR_019009
  935. name: DANDI Command Line Interface
  936. schemaKey: Software
  937. url: https://github.com/dandi/dandi-cli
  938. version: 0.59.0
  939. - description: Metadata generated by DANDI cli
  940. endDate: '2024-01-29T17:12:18.793971-05:00'
  941. id: urn:uuid:53f0e0c4-e84e-4969-80f4-c6fd1c733241
  942. name: Metadata generation
  943. schemaKey: Activity
  944. startDate: '2024-01-29T17:12:18.793971-05:00'
  945. wasAssociatedWith:
  946. - identifier: RRID:SCR_019009
  947. name: DANDI Command Line Interface
  948. schemaKey: Software
  949. url: https://github.com/dandi/dandi-cli
  950. version: 0.59.0
  951. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  952. access:
  953. - schemaKey: AccessRequirements
  954. status: dandi:EmbargoedAccess
  955. blobDateModified: '2020-11-19T13:21:18.493630-05:00'
  956. contentSize: 165966348
  957. contentUrl:
  958. - https://api.dandiarchive.org/api/assets/3cc4086a-8f0b-4de8-823f-f0e8e6688c17/download/
  959. - https://dandiarchive.s3.amazonaws.com/blobs/ad7/04f/ad704f5e-ebd1-4048-a187-b11985f53d04
  960. dateModified: '2024-01-29T17:11:04.321353-05:00'
  961. digest:
  962. dandi:dandi-etag: 74a13b06e18d0444f59c5f6b03536e42-3
  963. dandi:sha2-256: 8d0bbe21fe9482ee84d643f9cc394c594adbea7fd512a56ce550744bd125abe9
  964. encodingFormat: application/gzip
  965. id: dandiasset:3cc4086a-8f0b-4de8-823f-f0e8e6688c17
  966. identifier: 3cc4086a-8f0b-4de8-823f-f0e8e6688c17
  967. path: rawdata/sub-SP002/ses-MRI/anat/sub-SP002_ses-MRI_echo-1_flip-7_chunk-2_VFA.nii.gz
  968. schemaKey: Asset
  969. schemaVersion: 0.6.4
  970. wasAttributedTo:
  971. - identifier: SP002
  972. schemaKey: Participant
  973. wasGeneratedBy:
  974. - identifier: MRI
  975. name: MRI
  976. schemaKey: Session
  977. - description: Metadata generated by DANDI cli
  978. endDate: '2024-01-29T17:11:02.339588-05:00'
  979. id: urn:uuid:5fc49eb3-0cc6-403d-94f2-5ca6537a3a23
  980. name: Metadata generation
  981. schemaKey: Activity
  982. startDate: '2024-01-29T17:11:02.339588-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.59.0
  989. - description: Metadata generated by DANDI cli
  990. endDate: '2024-01-29T17:11:04.321228-05:00'
  991. id: urn:uuid:030df7eb-85fb-4c5d-b8cb-c634a1ab7502
  992. name: Metadata generation
  993. schemaKey: Activity
  994. startDate: '2024-01-29T17:11:04.321228-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.59.0
  1001. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1002. access:
  1003. - schemaKey: AccessRequirements
  1004. status: dandi:EmbargoedAccess
  1005. blobDateModified: '2024-01-29T17:03:49.568075-05:00'
  1006. contentSize: 361
  1007. contentUrl:
  1008. - https://api.dandiarchive.org/api/assets/52ce18bf-bfe8-42de-a76d-f0151670a3b8/download/
  1009. - https://dandiarchive.s3.amazonaws.com/blobs/746/454/746454c8-1f59-4baa-a99e-cd07fa32f49b
  1010. dateModified: '2024-01-29T17:12:24.794500-05:00'
  1011. digest:
  1012. dandi:dandi-etag: a83ce528209735cd7f33b7c7ec7927d6-1
  1013. dandi:sha2-256: 62ebe955fbf0eb1042a60b888761e35020cbaf52943c5619716a96796b676953
  1014. encodingFormat: application/json
  1015. id: dandiasset:52ce18bf-bfe8-42de-a76d-f0151670a3b8
  1016. identifier: 52ce18bf-bfe8-42de-a76d-f0151670a3b8
  1017. path: rawdata/sub-SP002/ses-MRI/anat/sub-SP002_ses-MRI_echo-2_flip-6_chunk-2_VFA.json
  1018. schemaKey: Asset
  1019. schemaVersion: 0.6.4
  1020. wasAttributedTo:
  1021. - identifier: SP002
  1022. schemaKey: Participant
  1023. wasGeneratedBy:
  1024. - identifier: MRI
  1025. name: MRI
  1026. schemaKey: Session
  1027. - description: Metadata generated by DANDI cli
  1028. endDate: '2024-01-29T17:12:24.360062-05:00'
  1029. id: urn:uuid:1dbc4a68-3a56-4550-bb6b-2f5277d0502b
  1030. name: Metadata generation
  1031. schemaKey: Activity
  1032. startDate: '2024-01-29T17:12:24.360062-05:00'
  1033. wasAssociatedWith:
  1034. - identifier: RRID:SCR_019009
  1035. name: DANDI Command Line Interface
  1036. schemaKey: Software
  1037. url: https://github.com/dandi/dandi-cli
  1038. version: 0.59.0
  1039. - description: Metadata generated by DANDI cli
  1040. endDate: '2024-01-29T17:12:24.794465-05:00'
  1041. id: urn:uuid:793f75e9-7ca5-4f18-bd61-81e9214b4b78
  1042. name: Metadata generation
  1043. schemaKey: Activity
  1044. startDate: '2024-01-29T17:12:24.794465-05:00'
  1045. wasAssociatedWith:
  1046. - identifier: RRID:SCR_019009
  1047. name: DANDI Command Line Interface
  1048. schemaKey: Software
  1049. url: https://github.com/dandi/dandi-cli
  1050. version: 0.59.0
  1051. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1052. access:
  1053. - schemaKey: AccessRequirements
  1054. status: dandi:EmbargoedAccess
  1055. blobDateModified: '2020-11-19T13:21:06.062593-05:00'
  1056. contentSize: 169780510
  1057. contentUrl:
  1058. - https://api.dandiarchive.org/api/assets/ce5d418c-70eb-4ca6-91eb-5c774562abb2/download/
  1059. - https://dandiarchive.s3.amazonaws.com/blobs/317/a41/317a411d-5918-4c5a-92ef-6caf97e114a5
  1060. dateModified: '2024-01-29T17:11:42.774231-05:00'
  1061. digest:
  1062. dandi:dandi-etag: fb2f870d041c7ebc2c36d449c86a222c-3
  1063. dandi:sha2-256: ef1ff73d4d4748b65db1f51b41ba41ffac06de069009a49e32aa12c6e4942e10
  1064. encodingFormat: application/gzip
  1065. id: dandiasset:ce5d418c-70eb-4ca6-91eb-5c774562abb2
  1066. identifier: ce5d418c-70eb-4ca6-91eb-5c774562abb2
  1067. path: rawdata/sub-SP002/ses-MRI/anat/sub-SP002_ses-MRI_echo-2_flip-1_chunk-2_VFA.nii.gz
  1068. schemaKey: Asset
  1069. schemaVersion: 0.6.4
  1070. wasAttributedTo:
  1071. - identifier: SP002
  1072. schemaKey: Participant
  1073. wasGeneratedBy:
  1074. - identifier: MRI
  1075. name: MRI
  1076. schemaKey: Session
  1077. - description: Metadata generated by DANDI cli
  1078. endDate: '2024-01-29T17:11:40.531385-05:00'
  1079. id: urn:uuid:70a5ce5d-fb64-4c3c-825a-e3777ebdbd92
  1080. name: Metadata generation
  1081. schemaKey: Activity
  1082. startDate: '2024-01-29T17:11:40.531385-05:00'
  1083. wasAssociatedWith:
  1084. - identifier: RRID:SCR_019009
  1085. name: DANDI Command Line Interface
  1086. schemaKey: Software
  1087. url: https://github.com/dandi/dandi-cli
  1088. version: 0.59.0
  1089. - description: Metadata generated by DANDI cli
  1090. endDate: '2024-01-29T17:11:42.773937-05:00'
  1091. id: urn:uuid:a068a9ac-9d5f-42e3-ba94-c09e1740d6ef
  1092. name: Metadata generation
  1093. schemaKey: Activity
  1094. startDate: '2024-01-29T17:11:42.773937-05:00'
  1095. wasAssociatedWith:
  1096. - identifier: RRID:SCR_019009
  1097. name: DANDI Command Line Interface
  1098. schemaKey: Software
  1099. url: https://github.com/dandi/dandi-cli
  1100. version: 0.59.0
  1101. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1102. access:
  1103. - schemaKey: AccessRequirements
  1104. status: dandi:EmbargoedAccess
  1105. blobDateModified: '2024-01-29T17:03:56.960145-05:00'
  1106. contentSize: 361
  1107. contentUrl:
  1108. - https://api.dandiarchive.org/api/assets/9db85c4b-fbc2-453f-bbd7-7b023d06f7c8/download/
  1109. - https://dandiarchive.s3.amazonaws.com/blobs/a96/54f/a9654fe0-4bf9-4778-a06f-d9a131f7298d
  1110. dateModified: '2024-01-29T17:12:51.787271-05:00'
  1111. digest:
  1112. dandi:dandi-etag: 0cb6dadeba22cec2c447b1bb71917933-1
  1113. dandi:sha2-256: 1e739f07e642d8106f15728542d795f81529319f37bc6f408ea4e940a1b440ba
  1114. encodingFormat: application/json
  1115. id: dandiasset:9db85c4b-fbc2-453f-bbd7-7b023d06f7c8
  1116. identifier: 9db85c4b-fbc2-453f-bbd7-7b023d06f7c8
  1117. path: rawdata/sub-SP002/ses-MRI/anat/sub-SP002_ses-MRI_echo-2_flip-7_chunk-2_VFA.json
  1118. schemaKey: Asset
  1119. schemaVersion: 0.6.4
  1120. wasAttributedTo:
  1121. - identifier: SP002
  1122. schemaKey: Participant
  1123. wasGeneratedBy:
  1124. - identifier: MRI
  1125. name: MRI
  1126. schemaKey: Session
  1127. - description: Metadata generated by DANDI cli
  1128. endDate: '2024-01-29T17:12:51.555459-05:00'
  1129. id: urn:uuid:4497752f-1e52-40ad-bf99-b01fcb44f1ed
  1130. name: Metadata generation
  1131. schemaKey: Activity
  1132. startDate: '2024-01-29T17:12:51.555459-05:00'
  1133. wasAssociatedWith:
  1134. - identifier: RRID:SCR_019009
  1135. name: DANDI Command Line Interface
  1136. schemaKey: Software
  1137. url: https://github.com/dandi/dandi-cli
  1138. version: 0.59.0
  1139. - description: Metadata generated by DANDI cli
  1140. endDate: '2024-01-29T17:12:51.787249-05:00'
  1141. id: urn:uuid:44596da0-1796-4a14-a394-81f82c2f71fd
  1142. name: Metadata generation
  1143. schemaKey: Activity
  1144. startDate: '2024-01-29T17:12:51.787249-05:00'
  1145. wasAssociatedWith:
  1146. - identifier: RRID:SCR_019009
  1147. name: DANDI Command Line Interface
  1148. schemaKey: Software
  1149. url: https://github.com/dandi/dandi-cli
  1150. version: 0.59.0
  1151. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1152. access:
  1153. - schemaKey: AccessRequirements
  1154. status: dandi:EmbargoedAccess
  1155. blobDateModified: '2020-11-19T13:23:54.268095-05:00'
  1156. contentSize: 166497450
  1157. contentUrl:
  1158. - https://api.dandiarchive.org/api/assets/b09e876e-0409-457c-a507-cbe5dbf36d94/download/
  1159. - https://dandiarchive.s3.amazonaws.com/blobs/a54/bc9/a54bc9ee-6da4-4c8b-9f44-a3b7a64ed87b
  1160. dateModified: '2024-01-29T17:12:22.005607-05:00'
  1161. digest:
  1162. dandi:dandi-etag: 1dd52fb072471bd20d6e8b4996906acb-3
  1163. dandi:sha2-256: b6a3d3c5a0f7027fad79d34f58041f4393c9c96f2c74aedea0508c87cf0604c7
  1164. encodingFormat: application/gzip
  1165. id: dandiasset:b09e876e-0409-457c-a507-cbe5dbf36d94
  1166. identifier: b09e876e-0409-457c-a507-cbe5dbf36d94
  1167. path: rawdata/sub-SP002/ses-MRI/anat/sub-SP002_ses-MRI_echo-2_flip-5_chunk-2_VFA.nii.gz
  1168. schemaKey: Asset
  1169. schemaVersion: 0.6.4
  1170. wasAttributedTo:
  1171. - identifier: SP002
  1172. schemaKey: Participant
  1173. wasGeneratedBy:
  1174. - identifier: MRI
  1175. name: MRI
  1176. schemaKey: Session
  1177. - description: Metadata generated by DANDI cli
  1178. endDate: '2024-01-29T17:12:20.017765-05:00'
  1179. id: urn:uuid:0f67aa0f-1faa-43dc-9428-4cc923792241
  1180. name: Metadata generation
  1181. schemaKey: Activity
  1182. startDate: '2024-01-29T17:12:20.017765-05:00'
  1183. wasAssociatedWith:
  1184. - identifier: RRID:SCR_019009
  1185. name: DANDI Command Line Interface
  1186. schemaKey: Software
  1187. url: https://github.com/dandi/dandi-cli
  1188. version: 0.59.0
  1189. - description: Metadata generated by DANDI cli
  1190. endDate: '2024-01-29T17:12:22.005572-05:00'
  1191. id: urn:uuid:c1be5dbb-1369-4ada-9f11-265cb25a9da8
  1192. name: Metadata generation
  1193. schemaKey: Activity
  1194. startDate: '2024-01-29T17:12:22.005572-05:00'
  1195. wasAssociatedWith:
  1196. - identifier: RRID:SCR_019009
  1197. name: DANDI Command Line Interface
  1198. schemaKey: Software
  1199. url: https://github.com/dandi/dandi-cli
  1200. version: 0.59.0
  1201. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1202. access:
  1203. - schemaKey: AccessRequirements
  1204. status: dandi:EmbargoedAccess
  1205. blobDateModified: '2020-11-19T13:21:07.548597-05:00'
  1206. contentSize: 166836335
  1207. contentUrl:
  1208. - https://api.dandiarchive.org/api/assets/b8479749-6597-481b-8061-2dae5ce11dbd/download/
  1209. - https://dandiarchive.s3.amazonaws.com/blobs/4fa/1c5/4fa1c587-b933-4762-b818-a6439fdc1a7e
  1210. dateModified: '2024-01-29T17:11:57.195374-05:00'
  1211. digest:
  1212. dandi:dandi-etag: 068a482cff6289358215d918fda4659e-3
  1213. dandi:sha2-256: 251226c365a98ff76834c1b334347d36a43187d5e418063c2d51f8a16e5242e6
  1214. encodingFormat: application/gzip
  1215. id: dandiasset:b8479749-6597-481b-8061-2dae5ce11dbd
  1216. identifier: b8479749-6597-481b-8061-2dae5ce11dbd
  1217. path: rawdata/sub-SP002/ses-MRI/anat/sub-SP002_ses-MRI_echo-2_flip-2_chunk-2_VFA.nii.gz
  1218. schemaKey: Asset
  1219. schemaVersion: 0.6.4
  1220. wasAttributedTo:
  1221. - identifier: SP002
  1222. schemaKey: Participant
  1223. wasGeneratedBy:
  1224. - identifier: MRI
  1225. name: MRI
  1226. schemaKey: Session
  1227. - description: Metadata generated by DANDI cli
  1228. endDate: '2024-01-29T17:11:55.107261-05:00'
  1229. id: urn:uuid:9ee75dc3-2145-452c-8f64-c100c4972bb0
  1230. name: Metadata generation
  1231. schemaKey: Activity
  1232. startDate: '2024-01-29T17:11:55.107261-05:00'
  1233. wasAssociatedWith:
  1234. - identifier: RRID:SCR_019009
  1235. name: DANDI Command Line Interface
  1236. schemaKey: Software
  1237. url: https://github.com/dandi/dandi-cli
  1238. version: 0.59.0
  1239. - description: Metadata generated by DANDI cli
  1240. endDate: '2024-01-29T17:11:57.195327-05:00'
  1241. id: urn:uuid:a781b7b9-f1ad-498d-8ae6-15e735d7cdb6
  1242. name: Metadata generation
  1243. schemaKey: Activity
  1244. startDate: '2024-01-29T17:11:57.195327-05:00'
  1245. wasAssociatedWith:
  1246. - identifier: RRID:SCR_019009
  1247. name: DANDI Command Line Interface
  1248. schemaKey: Software
  1249. url: https://github.com/dandi/dandi-cli
  1250. version: 0.59.0
  1251. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1252. access:
  1253. - schemaKey: AccessRequirements
  1254. status: dandi:EmbargoedAccess
  1255. blobDateModified: '2020-11-19T13:24:44.693245-05:00'
  1256. contentSize: 159920442
  1257. contentUrl:
  1258. - https://api.dandiarchive.org/api/assets/9c202217-5e47-4e07-911f-bb5109f11eed/download/
  1259. - https://dandiarchive.s3.amazonaws.com/blobs/99d/7b5/99d7b5ab-0363-444f-8805-94ce4d7a5d46
  1260. dateModified: '2024-01-29T17:12:19.048638-05:00'
  1261. digest:
  1262. dandi:dandi-etag: 819ce2367a7938c46854f8ceeb1c6417-3
  1263. dandi:sha2-256: 11340c82f7ef7ace05678406d7fd011eb7cee0ffde967f1d6df8a8ab907c95f8
  1264. encodingFormat: application/gzip
  1265. id: dandiasset:9c202217-5e47-4e07-911f-bb5109f11eed
  1266. identifier: 9c202217-5e47-4e07-911f-bb5109f11eed
  1267. path: rawdata/sub-SP002/ses-MRI/anat/sub-SP002_ses-MRI_echo-2_flip-4_chunk-2_VFA.nii.gz
  1268. schemaKey: Asset
  1269. schemaVersion: 0.6.4
  1270. wasAttributedTo:
  1271. - identifier: SP002
  1272. schemaKey: Participant
  1273. wasGeneratedBy:
  1274. - identifier: MRI
  1275. name: MRI
  1276. schemaKey: Session
  1277. - description: Metadata generated by DANDI cli
  1278. endDate: '2024-01-29T17:12:16.747972-05:00'
  1279. id: urn:uuid:3041c739-83c2-4506-a40f-44cfc909dd65
  1280. name: Metadata generation
  1281. schemaKey: Activity
  1282. startDate: '2024-01-29T17:12:16.747972-05:00'
  1283. wasAssociatedWith:
  1284. - identifier: RRID:SCR_019009
  1285. name: DANDI Command Line Interface
  1286. schemaKey: Software
  1287. url: https://github.com/dandi/dandi-cli
  1288. version: 0.59.0
  1289. - description: Metadata generated by DANDI cli
  1290. endDate: '2024-01-29T17:12:19.048565-05:00'
  1291. id: urn:uuid:cf2b9f91-c3d9-49b8-9389-4ad0b39ae92c
  1292. name: Metadata generation
  1293. schemaKey: Activity
  1294. startDate: '2024-01-29T17:12:19.048565-05:00'
  1295. wasAssociatedWith:
  1296. - identifier: RRID:SCR_019009
  1297. name: DANDI Command Line Interface
  1298. schemaKey: Software
  1299. url: https://github.com/dandi/dandi-cli
  1300. version: 0.59.0
  1301. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1302. access:
  1303. - schemaKey: AccessRequirements
  1304. status: dandi:EmbargoedAccess
  1305. blobDateModified: '2020-11-19T13:23:53.273092-05:00'
  1306. contentSize: 163359795
  1307. contentUrl:
  1308. - https://api.dandiarchive.org/api/assets/d7d07590-64ed-4e56-9031-e188bb2328b1/download/
  1309. - https://dandiarchive.s3.amazonaws.com/blobs/13e/6da/13e6da49-1e7a-497e-b717-488d2a911384
  1310. dateModified: '2024-01-29T17:12:28.126967-05:00'
  1311. digest:
  1312. dandi:dandi-etag: 1aec20c20e7afecfae3908a010801930-3
  1313. dandi:sha2-256: f22f7e4a890e596eaf08927490e20296c0e5f268ae411fb21a1d39c8f6ac399b
  1314. encodingFormat: application/gzip
  1315. id: dandiasset:d7d07590-64ed-4e56-9031-e188bb2328b1
  1316. identifier: d7d07590-64ed-4e56-9031-e188bb2328b1
  1317. path: rawdata/sub-SP002/ses-MRI/anat/sub-SP002_ses-MRI_echo-2_flip-6_chunk-2_VFA.nii.gz
  1318. schemaKey: Asset
  1319. schemaVersion: 0.6.4
  1320. wasAttributedTo:
  1321. - identifier: SP002
  1322. schemaKey: Participant
  1323. wasGeneratedBy:
  1324. - identifier: MRI
  1325. name: MRI
  1326. schemaKey: Session
  1327. - description: Metadata generated by DANDI cli
  1328. endDate: '2024-01-29T17:12:25.939973-05:00'
  1329. id: urn:uuid:4972fb9a-b32a-455b-98b6-323e1c3afb62
  1330. name: Metadata generation
  1331. schemaKey: Activity
  1332. startDate: '2024-01-29T17:12:25.939973-05:00'
  1333. wasAssociatedWith:
  1334. - identifier: RRID:SCR_019009
  1335. name: DANDI Command Line Interface
  1336. schemaKey: Software
  1337. url: https://github.com/dandi/dandi-cli
  1338. version: 0.59.0
  1339. - description: Metadata generated by DANDI cli
  1340. endDate: '2024-01-29T17:12:28.126933-05:00'
  1341. id: urn:uuid:6b35372b-8248-48dd-94ac-d7479519c6f5
  1342. name: Metadata generation
  1343. schemaKey: Activity
  1344. startDate: '2024-01-29T17:12:28.126933-05:00'
  1345. wasAssociatedWith:
  1346. - identifier: RRID:SCR_019009
  1347. name: DANDI Command Line Interface
  1348. schemaKey: Software
  1349. url: https://github.com/dandi/dandi-cli
  1350. version: 0.59.0
  1351. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1352. access:
  1353. - schemaKey: AccessRequirements
  1354. status: dandi:EmbargoedAccess
  1355. blobDateModified: '2020-11-19T13:25:29.727379-05:00'
  1356. contentSize: 166470545
  1357. contentUrl:
  1358. - https://api.dandiarchive.org/api/assets/6f451196-aa03-4f9b-bba6-0855b43e0024/download/
  1359. - https://dandiarchive.s3.amazonaws.com/blobs/c00/7ad/c007ad05-de2c-4ef5-8aee-cd25ef6c5b6e
  1360. dateModified: '2024-01-29T17:12:54.974079-05:00'
  1361. digest:
  1362. dandi:dandi-etag: eaade700ce0c218df0efc07ddc471969-3
  1363. dandi:sha2-256: 084dbd23b569359e1eb67d77030514257e658efb3dd18f5d983296c03051e059
  1364. encodingFormat: application/gzip
  1365. id: dandiasset:6f451196-aa03-4f9b-bba6-0855b43e0024
  1366. identifier: 6f451196-aa03-4f9b-bba6-0855b43e0024
  1367. path: rawdata/sub-SP002/ses-MRI/anat/sub-SP002_ses-MRI_echo-2_flip-7_chunk-2_VFA.nii.gz
  1368. schemaKey: Asset
  1369. schemaVersion: 0.6.4
  1370. wasAttributedTo:
  1371. - identifier: SP002
  1372. schemaKey: Participant
  1373. wasGeneratedBy:
  1374. - identifier: MRI
  1375. name: MRI
  1376. schemaKey: Session
  1377. - description: Metadata generated by DANDI cli
  1378. endDate: '2024-01-29T17:12:52.926974-05:00'
  1379. id: urn:uuid:bb71bd77-a693-4c77-aa46-405c3fa1c8f8
  1380. name: Metadata generation
  1381. schemaKey: Activity
  1382. startDate: '2024-01-29T17:12:52.926974-05:00'
  1383. wasAssociatedWith:
  1384. - identifier: RRID:SCR_019009
  1385. name: DANDI Command Line Interface
  1386. schemaKey: Software
  1387. url: https://github.com/dandi/dandi-cli
  1388. version: 0.59.0
  1389. - description: Metadata generated by DANDI cli
  1390. endDate: '2024-01-29T17:12:54.973960-05:00'
  1391. id: urn:uuid:c60d0c0b-42ef-4e6e-87de-6b92a5116ea1
  1392. name: Metadata generation
  1393. schemaKey: Activity
  1394. startDate: '2024-01-29T17:12:54.973960-05:00'
  1395. wasAssociatedWith:
  1396. - identifier: RRID:SCR_019009
  1397. name: DANDI Command Line Interface
  1398. schemaKey: Software
  1399. url: https://github.com/dandi/dandi-cli
  1400. version: 0.59.0
  1401. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1402. access:
  1403. - schemaKey: AccessRequirements
  1404. status: dandi:EmbargoedAccess
  1405. blobDateModified: '2024-01-29T15:46:46.189425-05:00'
  1406. contentSize: 364
  1407. contentUrl:
  1408. - https://api.dandiarchive.org/api/assets/ede3df18-3049-4e37-9df4-cb3b2b3fee96/download/
  1409. - https://dandiarchive.s3.amazonaws.com/blobs/7a6/9a0/7a69a066-3d5d-4cb1-b221-34a199ff1b06
  1410. dateModified: '2024-01-30T11:02:32.801934-05:00'
  1411. digest:
  1412. dandi:dandi-etag: ab54668b46b7fe3cbb6faebdecc4fdcf-1
  1413. dandi:sha2-256: a14d5d6705d6c1e85e9cc29f5b137155d864934bf5f7a116861204331452f47a
  1414. encodingFormat: application/json
  1415. id: dandiasset:ede3df18-3049-4e37-9df4-cb3b2b3fee96
  1416. identifier: ede3df18-3049-4e37-9df4-cb3b2b3fee96
  1417. path: dataset_description.json
  1418. schemaKey: Asset
  1419. schemaVersion: 0.6.4
  1420. wasGeneratedBy:
  1421. - description: Metadata generated by DANDI cli
  1422. endDate: '2024-01-30T11:02:32.801900-05:00'
  1423. id: urn:uuid:9cba4d00-64ca-4504-9d4e-46a0f26bbacc
  1424. name: Metadata generation
  1425. schemaKey: Activity
  1426. startDate: '2024-01-30T11:02:32.801900-05:00'
  1427. wasAssociatedWith:
  1428. - identifier: RRID:SCR_019009
  1429. name: DANDI Command Line Interface
  1430. schemaKey: Software
  1431. url: https://github.com/dandi/dandi-cli
  1432. version: 0.59.0
  1433. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1434. access:
  1435. - schemaKey: AccessRequirements
  1436. status: dandi:EmbargoedAccess
  1437. blobDateModified: '2024-01-29T15:58:16.910600-05:00'
  1438. contentSize: 111
  1439. contentUrl:
  1440. - https://api.dandiarchive.org/api/assets/f4b836ec-3df9-414e-91ff-1b410f4898c7/download/
  1441. - https://dandiarchive.s3.amazonaws.com/blobs/3a5/1f5/3a51f5c3-48c6-4d3b-8ad7-a6aeed8aa025
  1442. dateModified: '2024-01-30T11:02:32.828505-05:00'
  1443. digest:
  1444. dandi:dandi-etag: 2340d14331e2bd19cd0230a9d161a3e3-1
  1445. dandi:sha2-256: 515764bf0c30d730581e580a9b398aeece6b1a8d1f0d1856053df862fbb34d58
  1446. encodingFormat: text/markdown
  1447. id: dandiasset:f4b836ec-3df9-414e-91ff-1b410f4898c7
  1448. identifier: f4b836ec-3df9-414e-91ff-1b410f4898c7
  1449. path: README.md
  1450. schemaKey: Asset
  1451. schemaVersion: 0.6.4
  1452. wasAttributedTo: []
  1453. wasGeneratedBy:
  1454. - description: Metadata generated by DANDI cli
  1455. endDate: '2024-01-30T11:02:32.252970-05:00'
  1456. id: urn:uuid:7d6859f8-ce1d-43d3-b2eb-d50c29eac000
  1457. name: Metadata generation
  1458. schemaKey: Activity
  1459. startDate: '2024-01-30T11:02:32.252970-05:00'
  1460. wasAssociatedWith:
  1461. - identifier: RRID:SCR_019009
  1462. name: DANDI Command Line Interface
  1463. schemaKey: Software
  1464. url: https://github.com/dandi/dandi-cli
  1465. version: 0.59.0
  1466. - description: Metadata generated by DANDI cli
  1467. endDate: '2024-01-30T11:02:32.828478-05:00'
  1468. id: urn:uuid:7cdd68cf-994d-45da-80ab-24537967e68d
  1469. name: Metadata generation
  1470. schemaKey: Activity
  1471. startDate: '2024-01-30T11:02:32.828478-05:00'
  1472. wasAssociatedWith:
  1473. - identifier: RRID:SCR_019009
  1474. name: DANDI Command Line Interface
  1475. schemaKey: Software
  1476. url: https://github.com/dandi/dandi-cli
  1477. version: 0.59.0
  1478. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1479. access:
  1480. - schemaKey: AccessRequirements
  1481. status: dandi:EmbargoedAccess
  1482. blobDateModified: '2024-01-29T17:07:11.164963-05:00'
  1483. contentSize: 330
  1484. contentUrl:
  1485. - https://api.dandiarchive.org/api/assets/3e6f2d0f-d031-4d33-81c8-cc2e3c9ddb2c/download/
  1486. - https://dandiarchive.s3.amazonaws.com/blobs/449/aed/449aed3b-37ae-49b3-b29a-696592eda810
  1487. dateModified: '2024-01-30T11:02:33.831513-05:00'
  1488. digest:
  1489. dandi:dandi-etag: 7a159e700c8e99c628524587394568a0-1
  1490. dandi:sha2-256: 876247b26590f00f37a796ef9536fb6f676ec2f3bdb74971f66f926df0688f04
  1491. encodingFormat: application/json
  1492. id: dandiasset:3e6f2d0f-d031-4d33-81c8-cc2e3c9ddb2c
  1493. identifier: 3e6f2d0f-d031-4d33-81c8-cc2e3c9ddb2c
  1494. path: derivatives/MRI-pipeline/sub-SP002/anat/sub-SP002_ses-MRI_flip-1_chunk-2_VFA.json
  1495. schemaKey: Asset
  1496. schemaVersion: 0.6.4
  1497. wasAttributedTo: []
  1498. wasGeneratedBy:
  1499. - description: Metadata generated by DANDI cli
  1500. endDate: '2024-01-30T11:02:33.502843-05:00'
  1501. id: urn:uuid:e1510c0b-ef05-4e9f-a21f-c1fd57cd6d8b
  1502. name: Metadata generation
  1503. schemaKey: Activity
  1504. startDate: '2024-01-30T11:02:33.502843-05:00'
  1505. wasAssociatedWith:
  1506. - identifier: RRID:SCR_019009
  1507. name: DANDI Command Line Interface
  1508. schemaKey: Software
  1509. url: https://github.com/dandi/dandi-cli
  1510. version: 0.59.0
  1511. - description: Metadata generated by DANDI cli
  1512. endDate: '2024-01-30T11:02:33.831470-05:00'
  1513. id: urn:uuid:ac948a40-6d07-44c3-9628-3b6b0e06da88
  1514. name: Metadata generation
  1515. schemaKey: Activity
  1516. startDate: '2024-01-30T11:02:33.831470-05:00'
  1517. wasAssociatedWith:
  1518. - identifier: RRID:SCR_019009
  1519. name: DANDI Command Line Interface
  1520. schemaKey: Software
  1521. url: https://github.com/dandi/dandi-cli
  1522. version: 0.59.0
  1523. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1524. access:
  1525. - schemaKey: AccessRequirements
  1526. status: dandi:EmbargoedAccess
  1527. blobDateModified: '2024-01-29T17:07:18.742034-05:00'
  1528. contentSize: 330
  1529. contentUrl:
  1530. - https://api.dandiarchive.org/api/assets/163ce6e6-b4ae-40a3-bdf7-5f592b407efe/download/
  1531. - https://dandiarchive.s3.amazonaws.com/blobs/88b/b29/88bb291a-871b-411d-8279-0e0e81c2f88a
  1532. dateModified: '2024-01-30T11:02:37.734600-05:00'
  1533. digest:
  1534. dandi:dandi-etag: 92f099931ebf82a4b8163a829e58b3c6-1
  1535. dandi:sha2-256: 2d6bca43cc06bcba0a7aa48f54a82b20c3d58e67547fd0cc04d327515b792c8d
  1536. encodingFormat: application/json
  1537. id: dandiasset:163ce6e6-b4ae-40a3-bdf7-5f592b407efe
  1538. identifier: 163ce6e6-b4ae-40a3-bdf7-5f592b407efe
  1539. path: derivatives/MRI-pipeline/sub-SP002/anat/sub-SP002_ses-MRI_flip-2_chunk-2_VFA.json
  1540. schemaKey: Asset
  1541. schemaVersion: 0.6.4
  1542. wasAttributedTo: []
  1543. wasGeneratedBy:
  1544. - description: Metadata generated by DANDI cli
  1545. endDate: '2024-01-30T11:02:37.367761-05:00'
  1546. id: urn:uuid:15b15fae-a495-41ca-9ad8-6bbbf22a3a67
  1547. name: Metadata generation
  1548. schemaKey: Activity
  1549. startDate: '2024-01-30T11:02:37.367761-05:00'
  1550. wasAssociatedWith:
  1551. - identifier: RRID:SCR_019009
  1552. name: DANDI Command Line Interface
  1553. schemaKey: Software
  1554. url: https://github.com/dandi/dandi-cli
  1555. version: 0.59.0
  1556. - description: Metadata generated by DANDI cli
  1557. endDate: '2024-01-30T11:02:37.734555-05:00'
  1558. id: urn:uuid:555e85f7-91b0-4f28-999c-a1234852fd40
  1559. name: Metadata generation
  1560. schemaKey: Activity
  1561. startDate: '2024-01-30T11:02:37.734555-05:00'
  1562. wasAssociatedWith:
  1563. - identifier: RRID:SCR_019009
  1564. name: DANDI Command Line Interface
  1565. schemaKey: Software
  1566. url: https://github.com/dandi/dandi-cli
  1567. version: 0.59.0
  1568. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1569. access:
  1570. - schemaKey: AccessRequirements
  1571. status: dandi:EmbargoedAccess
  1572. blobDateModified: '2024-01-29T17:07:24.909092-05:00'
  1573. contentSize: 331
  1574. contentUrl:
  1575. - https://api.dandiarchive.org/api/assets/addc2269-75d0-47fb-8820-151892551845/download/
  1576. - https://dandiarchive.s3.amazonaws.com/blobs/c91/570/c9157046-c0ee-4d02-b6df-9383c2c29e12
  1577. dateModified: '2024-01-30T11:03:34.198541-05:00'
  1578. digest:
  1579. dandi:dandi-etag: 3a3fa077be304cdd31da51253ec64993-1
  1580. dandi:sha2-256: 1bdee9e9af35e247b59e91ed2b35f212f134a6f2b748b6f2a022f02f57f44505
  1581. encodingFormat: application/json
  1582. id: dandiasset:addc2269-75d0-47fb-8820-151892551845
  1583. identifier: addc2269-75d0-47fb-8820-151892551845
  1584. path: derivatives/MRI-pipeline/sub-SP002/anat/sub-SP002_ses-MRI_flip-3_chunk-2_VFA.json
  1585. schemaKey: Asset
  1586. schemaVersion: 0.6.4
  1587. wasAttributedTo: []
  1588. wasGeneratedBy:
  1589. - description: Metadata generated by DANDI cli
  1590. endDate: '2024-01-30T11:03:34.024818-05:00'
  1591. id: urn:uuid:87b994f0-d275-4140-afa8-490f31394c8e
  1592. name: Metadata generation
  1593. schemaKey: Activity
  1594. startDate: '2024-01-30T11:03:34.024818-05:00'
  1595. wasAssociatedWith:
  1596. - identifier: RRID:SCR_019009
  1597. name: DANDI Command Line Interface
  1598. schemaKey: Software
  1599. url: https://github.com/dandi/dandi-cli
  1600. version: 0.59.0
  1601. - description: Metadata generated by DANDI cli
  1602. endDate: '2024-01-30T11:03:34.198518-05:00'
  1603. id: urn:uuid:b1668da3-5681-4c5a-a8f7-22abd4b3bfb0
  1604. name: Metadata generation
  1605. schemaKey: Activity
  1606. startDate: '2024-01-30T11:03:34.198518-05:00'
  1607. wasAssociatedWith:
  1608. - identifier: RRID:SCR_019009
  1609. name: DANDI Command Line Interface
  1610. schemaKey: Software
  1611. url: https://github.com/dandi/dandi-cli
  1612. version: 0.59.0
  1613. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1614. access:
  1615. - schemaKey: AccessRequirements
  1616. status: dandi:EmbargoedAccess
  1617. blobDateModified: '2024-01-29T17:07:31.045149-05:00'
  1618. contentSize: 331
  1619. contentUrl:
  1620. - https://api.dandiarchive.org/api/assets/c22c1d0a-ba4f-4665-aaff-ee294e927336/download/
  1621. - https://dandiarchive.s3.amazonaws.com/blobs/b9e/09c/b9e09c85-be0a-4828-8db5-2885ec055e8e
  1622. dateModified: '2024-01-30T11:03:35.487050-05:00'
  1623. digest:
  1624. dandi:dandi-etag: fb54a5a16a34c90f1002a7a6ddc7cf65-1
  1625. dandi:sha2-256: 048a388e3794e71fb695ab480dbd3eb6814fb550d8d0dae83d30af55d848874c
  1626. encodingFormat: application/json
  1627. id: dandiasset:c22c1d0a-ba4f-4665-aaff-ee294e927336
  1628. identifier: c22c1d0a-ba4f-4665-aaff-ee294e927336
  1629. path: derivatives/MRI-pipeline/sub-SP002/anat/sub-SP002_ses-MRI_flip-4_chunk-2_VFA.json
  1630. schemaKey: Asset
  1631. schemaVersion: 0.6.4
  1632. wasAttributedTo: []
  1633. wasGeneratedBy:
  1634. - description: Metadata generated by DANDI cli
  1635. endDate: '2024-01-30T11:03:35.268049-05:00'
  1636. id: urn:uuid:86fa7181-7260-47ad-b549-872dcd6aa19d
  1637. name: Metadata generation
  1638. schemaKey: Activity
  1639. startDate: '2024-01-30T11:03:35.268049-05:00'
  1640. wasAssociatedWith:
  1641. - identifier: RRID:SCR_019009
  1642. name: DANDI Command Line Interface
  1643. schemaKey: Software
  1644. url: https://github.com/dandi/dandi-cli
  1645. version: 0.59.0
  1646. - description: Metadata generated by DANDI cli
  1647. endDate: '2024-01-30T11:03:35.487019-05:00'
  1648. id: urn:uuid:2e890b68-748f-4884-a42b-608c9082ec68
  1649. name: Metadata generation
  1650. schemaKey: Activity
  1651. startDate: '2024-01-30T11:03:35.487019-05:00'
  1652. wasAssociatedWith:
  1653. - identifier: RRID:SCR_019009
  1654. name: DANDI Command Line Interface
  1655. schemaKey: Software
  1656. url: https://github.com/dandi/dandi-cli
  1657. version: 0.59.0
  1658. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1659. access:
  1660. - schemaKey: AccessRequirements
  1661. status: dandi:EmbargoedAccess
  1662. blobDateModified: '2024-01-29T17:07:36.925205-05:00'
  1663. contentSize: 331
  1664. contentUrl:
  1665. - https://api.dandiarchive.org/api/assets/219f9232-497a-4e6c-8995-76a7ce989474/download/
  1666. - https://dandiarchive.s3.amazonaws.com/blobs/f20/c00/f20c00ed-fe78-4735-90d8-9f4ba76703cf
  1667. dateModified: '2024-01-30T11:03:41.762269-05:00'
  1668. digest:
  1669. dandi:dandi-etag: 94c55fcecf2d58e5f791b08614f76776-1
  1670. dandi:sha2-256: d0caef172ab49d15cbadc04bd0264b6b953f57892722e81acfaa38656357fda0
  1671. encodingFormat: application/json
  1672. id: dandiasset:219f9232-497a-4e6c-8995-76a7ce989474
  1673. identifier: 219f9232-497a-4e6c-8995-76a7ce989474
  1674. path: derivatives/MRI-pipeline/sub-SP002/anat/sub-SP002_ses-MRI_flip-5_chunk-2_VFA.json
  1675. schemaKey: Asset
  1676. schemaVersion: 0.6.4
  1677. wasAttributedTo: []
  1678. wasGeneratedBy:
  1679. - description: Metadata generated by DANDI cli
  1680. endDate: '2024-01-30T11:03:41.570125-05:00'
  1681. id: urn:uuid:71fb7d7e-a1cf-4435-803b-c3ba568e0b79
  1682. name: Metadata generation
  1683. schemaKey: Activity
  1684. startDate: '2024-01-30T11:03:41.570125-05:00'
  1685. wasAssociatedWith:
  1686. - identifier: RRID:SCR_019009
  1687. name: DANDI Command Line Interface
  1688. schemaKey: Software
  1689. url: https://github.com/dandi/dandi-cli
  1690. version: 0.59.0
  1691. - description: Metadata generated by DANDI cli
  1692. endDate: '2024-01-30T11:03:41.762242-05:00'
  1693. id: urn:uuid:090d724a-524b-45cb-b6dd-3c3dc68b251c
  1694. name: Metadata generation
  1695. schemaKey: Activity
  1696. startDate: '2024-01-30T11:03:41.762242-05:00'
  1697. wasAssociatedWith:
  1698. - identifier: RRID:SCR_019009
  1699. name: DANDI Command Line Interface
  1700. schemaKey: Software
  1701. url: https://github.com/dandi/dandi-cli
  1702. version: 0.59.0
  1703. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1704. access:
  1705. - schemaKey: AccessRequirements
  1706. status: dandi:EmbargoedAccess
  1707. blobDateModified: '2024-01-23T16:03:29.764267-05:00'
  1708. contentSize: 317072415
  1709. contentUrl:
  1710. - https://api.dandiarchive.org/api/assets/0e0486a2-3ba1-40ab-a2f6-b3350f642dce/download/
  1711. - https://dandiarchive.s3.amazonaws.com/blobs/e61/8dc/e618dc67-f144-43da-bcdc-1bdc98aec8ef
  1712. dateModified: '2024-01-30T11:02:40.276370-05:00'
  1713. digest:
  1714. dandi:dandi-etag: 97ca508e66e5dd0cca86263f6dee532d-5
  1715. dandi:sha2-256: 87dc34171b00eecb17588cb55933f8a38a605487caa835acc144afcc3fca9183
  1716. encodingFormat: application/gzip
  1717. id: dandiasset:0e0486a2-3ba1-40ab-a2f6-b3350f642dce
  1718. identifier: 0e0486a2-3ba1-40ab-a2f6-b3350f642dce
  1719. path: derivatives/MRI-pipeline/sub-SP002/anat/sub-SP002_ses-MRI_flip-1_chunk-2_VFA.nii.gz
  1720. schemaKey: Asset
  1721. schemaVersion: 0.6.4
  1722. wasAttributedTo: []
  1723. wasGeneratedBy:
  1724. - description: Metadata generated by DANDI cli
  1725. endDate: '2024-01-30T11:02:35.513358-05:00'
  1726. id: urn:uuid:6ffa46fe-7cf7-4b71-a42a-de07dd79b969
  1727. name: Metadata generation
  1728. schemaKey: Activity
  1729. startDate: '2024-01-30T11:02:35.513358-05:00'
  1730. wasAssociatedWith:
  1731. - identifier: RRID:SCR_019009
  1732. name: DANDI Command Line Interface
  1733. schemaKey: Software
  1734. url: https://github.com/dandi/dandi-cli
  1735. version: 0.59.0
  1736. - description: Metadata generated by DANDI cli
  1737. endDate: '2024-01-30T11:02:40.276313-05:00'
  1738. id: urn:uuid:c8952486-ae1a-49b7-91f4-553525e8ee57
  1739. name: Metadata generation
  1740. schemaKey: Activity
  1741. startDate: '2024-01-30T11:02:40.276313-05:00'
  1742. wasAssociatedWith:
  1743. - identifier: RRID:SCR_019009
  1744. name: DANDI Command Line Interface
  1745. schemaKey: Software
  1746. url: https://github.com/dandi/dandi-cli
  1747. version: 0.59.0
  1748. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1749. access:
  1750. - schemaKey: AccessRequirements
  1751. status: dandi:EmbargoedAccess
  1752. blobDateModified: '2024-01-29T17:07:43.373265-05:00'
  1753. contentSize: 335
  1754. contentUrl:
  1755. - https://api.dandiarchive.org/api/assets/f87f1f79-3ce1-4cc2-a49d-ae866fabd90c/download/
  1756. - https://dandiarchive.s3.amazonaws.com/blobs/1ca/37a/1ca37a7c-c6b7-402f-9e88-33e0cb2d5f0d
  1757. dateModified: '2024-01-30T11:03:43.493345-05:00'
  1758. digest:
  1759. dandi:dandi-etag: 8727a267e4ab57fd843f415722ef8ed9-1
  1760. dandi:sha2-256: e22d1a58204afa7c60e129d5b891014f77d956107cb20589a2848a25e658d46a
  1761. encodingFormat: application/json
  1762. id: dandiasset:f87f1f79-3ce1-4cc2-a49d-ae866fabd90c
  1763. identifier: f87f1f79-3ce1-4cc2-a49d-ae866fabd90c
  1764. path: derivatives/MRI-pipeline/sub-SP002/anat/sub-SP002_ses-MRI_flip-6_chunk-2_VFA.json
  1765. schemaKey: Asset
  1766. schemaVersion: 0.6.4
  1767. wasAttributedTo: []
  1768. wasGeneratedBy:
  1769. - description: Metadata generated by DANDI cli
  1770. endDate: '2024-01-30T11:03:43.245602-05:00'
  1771. id: urn:uuid:45ae2d40-92f1-42ff-8b2c-5240b202b6e4
  1772. name: Metadata generation
  1773. schemaKey: Activity
  1774. startDate: '2024-01-30T11:03:43.245602-05:00'
  1775. wasAssociatedWith:
  1776. - identifier: RRID:SCR_019009
  1777. name: DANDI Command Line Interface
  1778. schemaKey: Software
  1779. url: https://github.com/dandi/dandi-cli
  1780. version: 0.59.0
  1781. - description: Metadata generated by DANDI cli
  1782. endDate: '2024-01-30T11:03:43.493183-05:00'
  1783. id: urn:uuid:b51aff80-ebd5-486e-b164-a089f04b8d42
  1784. name: Metadata generation
  1785. schemaKey: Activity
  1786. startDate: '2024-01-30T11:03:43.493183-05:00'
  1787. wasAssociatedWith:
  1788. - identifier: RRID:SCR_019009
  1789. name: DANDI Command Line Interface
  1790. schemaKey: Software
  1791. url: https://github.com/dandi/dandi-cli
  1792. version: 0.59.0
  1793. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1794. access:
  1795. - schemaKey: AccessRequirements
  1796. status: dandi:EmbargoedAccess
  1797. blobDateModified: '2024-01-23T16:04:31.015451-05:00'
  1798. contentSize: 314653951
  1799. contentUrl:
  1800. - https://api.dandiarchive.org/api/assets/1f10cb20-b38b-40e6-b353-fe5086835bcb/download/
  1801. - https://dandiarchive.s3.amazonaws.com/blobs/8d1/875/8d18757a-651e-4a6f-a585-317e35256ed4
  1802. dateModified: '2024-01-30T11:02:42.739271-05:00'
  1803. digest:
  1804. dandi:dandi-etag: 99a4a1e8cf0c388f3e5a2c0da7ff3bfe-5
  1805. dandi:sha2-256: f39bf233c26d0631704f127724be66afea24fbad2e4b148741a0ce673b7373fc
  1806. encodingFormat: application/gzip
  1807. id: dandiasset:1f10cb20-b38b-40e6-b353-fe5086835bcb
  1808. identifier: 1f10cb20-b38b-40e6-b353-fe5086835bcb
  1809. path: derivatives/MRI-pipeline/sub-SP002/anat/sub-SP002_ses-MRI_flip-2_chunk-2_VFA.nii.gz
  1810. schemaKey: Asset
  1811. schemaVersion: 0.6.4
  1812. wasAttributedTo: []
  1813. wasGeneratedBy:
  1814. - description: Metadata generated by DANDI cli
  1815. endDate: '2024-01-30T11:02:38.790787-05:00'
  1816. id: urn:uuid:ff9dff27-0909-472f-9abd-d870705df81d
  1817. name: Metadata generation
  1818. schemaKey: Activity
  1819. startDate: '2024-01-30T11:02:38.790787-05:00'
  1820. wasAssociatedWith:
  1821. - identifier: RRID:SCR_019009
  1822. name: DANDI Command Line Interface
  1823. schemaKey: Software
  1824. url: https://github.com/dandi/dandi-cli
  1825. version: 0.59.0
  1826. - description: Metadata generated by DANDI cli
  1827. endDate: '2024-01-30T11:02:42.739088-05:00'
  1828. id: urn:uuid:a1fd797c-c4f1-47fa-ac1a-d45be32a5a56
  1829. name: Metadata generation
  1830. schemaKey: Activity
  1831. startDate: '2024-01-30T11:02:42.739088-05:00'
  1832. wasAssociatedWith:
  1833. - identifier: RRID:SCR_019009
  1834. name: DANDI Command Line Interface
  1835. schemaKey: Software
  1836. url: https://github.com/dandi/dandi-cli
  1837. version: 0.59.0
  1838. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1839. access:
  1840. - schemaKey: AccessRequirements
  1841. status: dandi:EmbargoedAccess
  1842. blobDateModified: '2024-01-29T17:07:50.878335-05:00'
  1843. contentSize: 331
  1844. contentUrl:
  1845. - https://api.dandiarchive.org/api/assets/a6cb65a9-5703-42a1-b808-0429f5e639c1/download/
  1846. - https://dandiarchive.s3.amazonaws.com/blobs/d0b/72a/d0b72a49-af3e-4cd8-83ad-29813bf2df01
  1847. dateModified: '2024-01-30T11:03:56.682643-05:00'
  1848. digest:
  1849. dandi:dandi-etag: 45795bbf243a8c6ec06bad7d57fe13d3-1
  1850. dandi:sha2-256: 880371c9ded05afbb4c9aca806645e2a012813b8e2125a2f177bbb8662585e21
  1851. encodingFormat: application/json
  1852. id: dandiasset:a6cb65a9-5703-42a1-b808-0429f5e639c1
  1853. identifier: a6cb65a9-5703-42a1-b808-0429f5e639c1
  1854. path: derivatives/MRI-pipeline/sub-SP002/anat/sub-SP002_ses-MRI_flip-7_chunk-2_VFA.json
  1855. schemaKey: Asset
  1856. schemaVersion: 0.6.4
  1857. wasAttributedTo: []
  1858. wasGeneratedBy:
  1859. - description: Metadata generated by DANDI cli
  1860. endDate: '2024-01-30T11:03:56.514368-05:00'
  1861. id: urn:uuid:9473cbc1-cd46-4542-af72-b26a07c3ddc4
  1862. name: Metadata generation
  1863. schemaKey: Activity
  1864. startDate: '2024-01-30T11:03:56.514368-05:00'
  1865. wasAssociatedWith:
  1866. - identifier: RRID:SCR_019009
  1867. name: DANDI Command Line Interface
  1868. schemaKey: Software
  1869. url: https://github.com/dandi/dandi-cli
  1870. version: 0.59.0
  1871. - description: Metadata generated by DANDI cli
  1872. endDate: '2024-01-30T11:03:56.682610-05:00'
  1873. id: urn:uuid:8f3ff1bd-4925-4ea5-9252-a10d7561ebf2
  1874. name: Metadata generation
  1875. schemaKey: Activity
  1876. startDate: '2024-01-30T11:03:56.682610-05:00'
  1877. wasAssociatedWith:
  1878. - identifier: RRID:SCR_019009
  1879. name: DANDI Command Line Interface
  1880. schemaKey: Software
  1881. url: https://github.com/dandi/dandi-cli
  1882. version: 0.59.0
  1883. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1884. access:
  1885. - schemaKey: AccessRequirements
  1886. status: dandi:EmbargoedAccess
  1887. blobDateModified: '2024-01-23T16:05:04.235550-05:00'
  1888. contentSize: 310742328
  1889. contentUrl:
  1890. - https://api.dandiarchive.org/api/assets/57bd7c46-ed39-476a-acc2-dec76fc65217/download/
  1891. - https://dandiarchive.s3.amazonaws.com/blobs/6c6/74c/6c674cc7-1541-4e95-83fb-f82eac9dae5f
  1892. dateModified: '2024-01-30T11:03:39.165111-05:00'
  1893. digest:
  1894. dandi:dandi-etag: 3b8a1110fa7f29f9cbe86d6bd8ee1fea-5
  1895. dandi:sha2-256: 7760a12c47d08f84b658da3c699a0db391eaea060a77639d65c0d7a13c1177da
  1896. encodingFormat: application/gzip
  1897. id: dandiasset:57bd7c46-ed39-476a-acc2-dec76fc65217
  1898. identifier: 57bd7c46-ed39-476a-acc2-dec76fc65217
  1899. path: derivatives/MRI-pipeline/sub-SP002/anat/sub-SP002_ses-MRI_flip-3_chunk-2_VFA.nii.gz
  1900. schemaKey: Asset
  1901. schemaVersion: 0.6.4
  1902. wasAttributedTo: []
  1903. wasGeneratedBy:
  1904. - description: Metadata generated by DANDI cli
  1905. endDate: '2024-01-30T11:03:34.753903-05:00'
  1906. id: urn:uuid:cd120d3c-6458-4ac0-b891-2a7f34579e5f
  1907. name: Metadata generation
  1908. schemaKey: Activity
  1909. startDate: '2024-01-30T11:03:34.753903-05:00'
  1910. wasAssociatedWith:
  1911. - identifier: RRID:SCR_019009
  1912. name: DANDI Command Line Interface
  1913. schemaKey: Software
  1914. url: https://github.com/dandi/dandi-cli
  1915. version: 0.59.0
  1916. - description: Metadata generated by DANDI cli
  1917. endDate: '2024-01-30T11:03:39.165067-05:00'
  1918. id: urn:uuid:3631ceca-dfab-449f-8105-d23db93c5eaa
  1919. name: Metadata generation
  1920. schemaKey: Activity
  1921. startDate: '2024-01-30T11:03:39.165067-05:00'
  1922. wasAssociatedWith:
  1923. - identifier: RRID:SCR_019009
  1924. name: DANDI Command Line Interface
  1925. schemaKey: Software
  1926. url: https://github.com/dandi/dandi-cli
  1927. version: 0.59.0
  1928. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1929. access:
  1930. - schemaKey: AccessRequirements
  1931. status: dandi:EmbargoedAccess
  1932. blobDateModified: '2024-01-23T16:05:35.538644-05:00'
  1933. contentSize: 308979104
  1934. contentUrl:
  1935. - https://api.dandiarchive.org/api/assets/b4c9cfb0-ca70-43da-8e9e-441c1f72ba4e/download/
  1936. - https://dandiarchive.s3.amazonaws.com/blobs/6f2/bff/6f2bff34-b4e9-4a93-94c5-87a5b7787134
  1937. dateModified: '2024-01-30T11:03:40.848851-05:00'
  1938. digest:
  1939. dandi:dandi-etag: 2be465fefaf10c4afc970fed6f46e696-5
  1940. dandi:sha2-256: ee5fe105cab6ffc1f28dd3e5732427a1a2c9829955d7b0a0af80bf931924841d
  1941. encodingFormat: application/gzip
  1942. id: dandiasset:b4c9cfb0-ca70-43da-8e9e-441c1f72ba4e
  1943. identifier: b4c9cfb0-ca70-43da-8e9e-441c1f72ba4e
  1944. path: derivatives/MRI-pipeline/sub-SP002/anat/sub-SP002_ses-MRI_flip-4_chunk-2_VFA.nii.gz
  1945. schemaKey: Asset
  1946. schemaVersion: 0.6.4
  1947. wasAttributedTo: []
  1948. wasGeneratedBy:
  1949. - description: Metadata generated by DANDI cli
  1950. endDate: '2024-01-30T11:03:36.434134-05:00'
  1951. id: urn:uuid:3cd83a9b-29aa-43bc-886d-cfe27f96f80a
  1952. name: Metadata generation
  1953. schemaKey: Activity
  1954. startDate: '2024-01-30T11:03:36.434134-05:00'
  1955. wasAssociatedWith:
  1956. - identifier: RRID:SCR_019009
  1957. name: DANDI Command Line Interface
  1958. schemaKey: Software
  1959. url: https://github.com/dandi/dandi-cli
  1960. version: 0.59.0
  1961. - description: Metadata generated by DANDI cli
  1962. endDate: '2024-01-30T11:03:40.848812-05:00'
  1963. id: urn:uuid:17f7fe30-aef0-4b32-b751-8e553df40096
  1964. name: Metadata generation
  1965. schemaKey: Activity
  1966. startDate: '2024-01-30T11:03:40.848812-05:00'
  1967. wasAssociatedWith:
  1968. - identifier: RRID:SCR_019009
  1969. name: DANDI Command Line Interface
  1970. schemaKey: Software
  1971. url: https://github.com/dandi/dandi-cli
  1972. version: 0.59.0
  1973. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1974. access:
  1975. - schemaKey: AccessRequirements
  1976. status: dandi:EmbargoedAccess
  1977. blobDateModified: '2024-01-23T16:06:06.799738-05:00'
  1978. contentSize: 309098532
  1979. contentUrl:
  1980. - https://api.dandiarchive.org/api/assets/35964dac-184a-470b-85ff-48dda85491f2/download/
  1981. - https://dandiarchive.s3.amazonaws.com/blobs/d9a/ab4/d9aab4b2-af22-42a3-b6db-a50e4f90c9c1
  1982. dateModified: '2024-01-30T11:03:47.905694-05:00'
  1983. digest:
  1984. dandi:dandi-etag: 44fbee83529b191e031c10465ebb2e06-5
  1985. dandi:sha2-256: fa0a360ce7f33813dfd58db7437e0c6288c5b34f13c6168394ed8b875f2dcd08
  1986. encodingFormat: application/gzip
  1987. id: dandiasset:35964dac-184a-470b-85ff-48dda85491f2
  1988. identifier: 35964dac-184a-470b-85ff-48dda85491f2
  1989. path: derivatives/MRI-pipeline/sub-SP002/anat/sub-SP002_ses-MRI_flip-5_chunk-2_VFA.nii.gz
  1990. schemaKey: Asset
  1991. schemaVersion: 0.6.4
  1992. wasAttributedTo: []
  1993. wasGeneratedBy:
  1994. - description: Metadata generated by DANDI cli
  1995. endDate: '2024-01-30T11:03:42.816424-05:00'
  1996. id: urn:uuid:030a982b-64fc-443d-b3d3-03b475ed88d1
  1997. name: Metadata generation
  1998. schemaKey: Activity
  1999. startDate: '2024-01-30T11:03:42.816424-05:00'
  2000. wasAssociatedWith:
  2001. - identifier: RRID:SCR_019009
  2002. name: DANDI Command Line Interface
  2003. schemaKey: Software
  2004. url: https://github.com/dandi/dandi-cli
  2005. version: 0.59.0
  2006. - description: Metadata generated by DANDI cli
  2007. endDate: '2024-01-30T11:03:47.905644-05:00'
  2008. id: urn:uuid:07eeb8a5-9cd6-4c18-91cd-d6c1671c8ed5
  2009. name: Metadata generation
  2010. schemaKey: Activity
  2011. startDate: '2024-01-30T11:03:47.905644-05:00'
  2012. wasAssociatedWith:
  2013. - identifier: RRID:SCR_019009
  2014. name: DANDI Command Line Interface
  2015. schemaKey: Software
  2016. url: https://github.com/dandi/dandi-cli
  2017. version: 0.59.0
  2018. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2019. access:
  2020. - schemaKey: AccessRequirements
  2021. status: dandi:EmbargoedAccess
  2022. blobDateModified: '2024-01-23T16:06:36.265826-05:00'
  2023. contentSize: 311157384
  2024. contentUrl:
  2025. - https://api.dandiarchive.org/api/assets/38b028f9-4c20-4b7c-aec9-8318fb98c31e/download/
  2026. - https://dandiarchive.s3.amazonaws.com/blobs/456/60b/45660b0f-b81b-4a7d-ba36-2e2c0ff612e8
  2027. dateModified: '2024-01-30T11:03:49.395224-05:00'
  2028. digest:
  2029. dandi:dandi-etag: 7bac44a91ce5e81173978b334f31a85b-5
  2030. dandi:sha2-256: a92191d8076f8cbb14dbf132c8a70de43069f841c20272509da8f5f53dfdcb0a
  2031. encodingFormat: application/gzip
  2032. id: dandiasset:38b028f9-4c20-4b7c-aec9-8318fb98c31e
  2033. identifier: 38b028f9-4c20-4b7c-aec9-8318fb98c31e
  2034. path: derivatives/MRI-pipeline/sub-SP002/anat/sub-SP002_ses-MRI_flip-6_chunk-2_VFA.nii.gz
  2035. schemaKey: Asset
  2036. schemaVersion: 0.6.4
  2037. wasAttributedTo: []
  2038. wasGeneratedBy:
  2039. - description: Metadata generated by DANDI cli
  2040. endDate: '2024-01-30T11:03:44.576127-05:00'
  2041. id: urn:uuid:a7fae464-14a1-449c-97e1-d6ee75c00c9e
  2042. name: Metadata generation
  2043. schemaKey: Activity
  2044. startDate: '2024-01-30T11:03:44.576127-05:00'
  2045. wasAssociatedWith:
  2046. - identifier: RRID:SCR_019009
  2047. name: DANDI Command Line Interface
  2048. schemaKey: Software
  2049. url: https://github.com/dandi/dandi-cli
  2050. version: 0.59.0
  2051. - description: Metadata generated by DANDI cli
  2052. endDate: '2024-01-30T11:03:49.395184-05:00'
  2053. id: urn:uuid:1bc5faae-4eb0-4bf0-bd1a-358d037fab6d
  2054. name: Metadata generation
  2055. schemaKey: Activity
  2056. startDate: '2024-01-30T11:03:49.395184-05:00'
  2057. wasAssociatedWith:
  2058. - identifier: RRID:SCR_019009
  2059. name: DANDI Command Line Interface
  2060. schemaKey: Software
  2061. url: https://github.com/dandi/dandi-cli
  2062. version: 0.59.0
  2063. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2064. access:
  2065. - schemaKey: AccessRequirements
  2066. status: dandi:EmbargoedAccess
  2067. blobDateModified: '2024-01-23T16:07:06.388916-05:00'
  2068. contentSize: 314447956
  2069. contentUrl:
  2070. - https://api.dandiarchive.org/api/assets/b6572de2-aacb-49f4-ad3c-9f536a6a4821/download/
  2071. - https://dandiarchive.s3.amazonaws.com/blobs/8ec/2ab/8ec2abda-2702-412c-808d-52e2d77f6d35
  2072. dateModified: '2024-01-30T11:04:01.673299-05:00'
  2073. digest:
  2074. dandi:dandi-etag: 48b17f0ec872eb9f8ad19e3e1780f79c-5
  2075. dandi:sha2-256: adba9055136f9cc969417f2067a0616973b5d3ac0067129b5318dc03798fb492
  2076. encodingFormat: application/gzip
  2077. id: dandiasset:b6572de2-aacb-49f4-ad3c-9f536a6a4821
  2078. identifier: b6572de2-aacb-49f4-ad3c-9f536a6a4821
  2079. path: derivatives/MRI-pipeline/sub-SP002/anat/sub-SP002_ses-MRI_flip-7_chunk-2_VFA.nii.gz
  2080. schemaKey: Asset
  2081. schemaVersion: 0.6.4
  2082. wasAttributedTo: []
  2083. wasGeneratedBy:
  2084. - description: Metadata generated by DANDI cli
  2085. endDate: '2024-01-30T11:03:57.582975-05:00'
  2086. id: urn:uuid:75c33ba3-d694-4df5-9136-fc6de3f1bab6
  2087. name: Metadata generation
  2088. schemaKey: Activity
  2089. startDate: '2024-01-30T11:03:57.582975-05:00'
  2090. wasAssociatedWith:
  2091. - identifier: RRID:SCR_019009
  2092. name: DANDI Command Line Interface
  2093. schemaKey: Software
  2094. url: https://github.com/dandi/dandi-cli
  2095. version: 0.59.0
  2096. - description: Metadata generated by DANDI cli
  2097. endDate: '2024-01-30T11:04:01.673227-05:00'
  2098. id: urn:uuid:c53558b0-b391-4003-8462-5f3405df6e34
  2099. name: Metadata generation
  2100. schemaKey: Activity
  2101. startDate: '2024-01-30T11:04:01.673227-05:00'
  2102. wasAssociatedWith:
  2103. - identifier: RRID:SCR_019009
  2104. name: DANDI Command Line Interface
  2105. schemaKey: Software
  2106. url: https://github.com/dandi/dandi-cli
  2107. version: 0.59.0
  2108. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2109. access:
  2110. - schemaKey: AccessRequirements
  2111. status: dandi:EmbargoedAccess
  2112. blobDateModified: '2024-01-29T15:53:49.031243-05:00'
  2113. contentSize: 152
  2114. contentUrl:
  2115. - https://api.dandiarchive.org/api/assets/d1cbd1bb-071e-42f8-984c-62a3c43d27f3/download/
  2116. - https://dandiarchive.s3.amazonaws.com/blobs/123/74a/12374ab9-5243-43ae-9631-d9d346c65d45
  2117. dateModified: '2024-01-30T11:49:05.100635-05:00'
  2118. digest:
  2119. dandi:dandi-etag: 34bc2baede1dc3fdd42a65c86a97af2f-1
  2120. dandi:sha2-256: 5739c5222cfb6aa99722d6129b1e947026fdb66a33241c29f95840dbd4d92afe
  2121. encodingFormat: text/tab-separated-values
  2122. id: dandiasset:d1cbd1bb-071e-42f8-984c-62a3c43d27f3
  2123. identifier: d1cbd1bb-071e-42f8-984c-62a3c43d27f3
  2124. path: samples.tsv
  2125. schemaKey: Asset
  2126. schemaVersion: 0.6.4
  2127. wasAttributedTo: []
  2128. wasGeneratedBy:
  2129. - description: Metadata generated by DANDI cli
  2130. endDate: '2024-01-30T11:49:04.905356-05:00'
  2131. id: urn:uuid:e0dc7dad-1929-4cef-ae2b-d658a5745b12
  2132. name: Metadata generation
  2133. schemaKey: Activity
  2134. startDate: '2024-01-30T11:49:04.905356-05:00'
  2135. wasAssociatedWith:
  2136. - identifier: RRID:SCR_019009
  2137. name: DANDI Command Line Interface
  2138. schemaKey: Software
  2139. url: https://github.com/dandi/dandi-cli
  2140. version: 0.59.0
  2141. - description: Metadata generated by DANDI cli
  2142. endDate: '2024-01-30T11:49:05.100615-05:00'
  2143. id: urn:uuid:5a2849dc-49b0-457b-b941-86639f1b7ad8
  2144. name: Metadata generation
  2145. schemaKey: Activity
  2146. startDate: '2024-01-30T11:49:05.100615-05:00'
  2147. wasAssociatedWith:
  2148. - identifier: RRID:SCR_019009
  2149. name: DANDI Command Line Interface
  2150. schemaKey: Software
  2151. url: https://github.com/dandi/dandi-cli
  2152. version: 0.59.0
  2153. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2154. access:
  2155. - schemaKey: AccessRequirements
  2156. status: dandi:EmbargoedAccess
  2157. blobDateModified: '2024-01-30T11:56:55.733306-05:00'
  2158. contentSize: 321
  2159. contentUrl:
  2160. - https://api.dandiarchive.org/api/assets/34d3ebd9-2ce9-42b3-8024-fdb2cc2e1882/download/
  2161. - https://dandiarchive.s3.amazonaws.com/blobs/d90/6b3/d906b3c3-08c2-4b59-85c6-fdd625dc7ec1
  2162. dateModified: '2024-01-30T11:57:52.473425-05:00'
  2163. digest:
  2164. dandi:dandi-etag: 8af1ad357cff73f6b5b4278ba682dcef-1
  2165. dandi:sha2-256: 56a33aa456539808c08874f2485a4b66d51dbec7f6281bde537d929d30b08f6d
  2166. encodingFormat: application/json
  2167. id: dandiasset:34d3ebd9-2ce9-42b3-8024-fdb2cc2e1882
  2168. identifier: 34d3ebd9-2ce9-42b3-8024-fdb2cc2e1882
  2169. path: derivatives/MRI-pipeline/sub-SP002/anat/sub-SP002_ses-MRI_flip-1_chunk-1_VFA.json
  2170. schemaKey: Asset
  2171. schemaVersion: 0.6.4
  2172. wasAttributedTo: []
  2173. wasGeneratedBy:
  2174. - description: Metadata generated by DANDI cli
  2175. endDate: '2024-01-30T11:57:51.577396-05:00'
  2176. id: urn:uuid:e41eca2e-a962-43ce-ba7f-d0a18e13cdc8
  2177. name: Metadata generation
  2178. schemaKey: Activity
  2179. startDate: '2024-01-30T11:57:51.577396-05:00'
  2180. wasAssociatedWith:
  2181. - identifier: RRID:SCR_019009
  2182. name: DANDI Command Line Interface
  2183. schemaKey: Software
  2184. url: https://github.com/dandi/dandi-cli
  2185. version: 0.59.0
  2186. - description: Metadata generated by DANDI cli
  2187. endDate: '2024-01-30T11:57:52.473380-05:00'
  2188. id: urn:uuid:ab6e7d75-f3ec-42b9-b70a-f699b25d6bd6
  2189. name: Metadata generation
  2190. schemaKey: Activity
  2191. startDate: '2024-01-30T11:57:52.473380-05:00'
  2192. wasAssociatedWith:
  2193. - identifier: RRID:SCR_019009
  2194. name: DANDI Command Line Interface
  2195. schemaKey: Software
  2196. url: https://github.com/dandi/dandi-cli
  2197. version: 0.59.0
  2198. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2199. access:
  2200. - schemaKey: AccessRequirements
  2201. status: dandi:EmbargoedAccess
  2202. blobDateModified: '2024-01-30T11:57:01.532360-05:00'
  2203. contentSize: 321
  2204. contentUrl:
  2205. - https://api.dandiarchive.org/api/assets/faa206d2-2db6-4952-819c-e7718716a093/download/
  2206. - https://dandiarchive.s3.amazonaws.com/blobs/2ae/3e0/2ae3e0dd-6616-49aa-8d3b-b494dd111215
  2207. dateModified: '2024-01-30T11:57:52.900804-05:00'
  2208. digest:
  2209. dandi:dandi-etag: 93b061c3c943419b0d49375995b5dad8-1
  2210. dandi:sha2-256: 4648255e0dd7c671a2046d8069e57003cc43152293d71c8f1e8cd7b51bbd1f96
  2211. encodingFormat: application/json
  2212. id: dandiasset:faa206d2-2db6-4952-819c-e7718716a093
  2213. identifier: faa206d2-2db6-4952-819c-e7718716a093
  2214. path: derivatives/MRI-pipeline/sub-SP002/anat/sub-SP002_ses-MRI_flip-2_chunk-1_VFA.json
  2215. schemaKey: Asset
  2216. schemaVersion: 0.6.4
  2217. wasAttributedTo: []
  2218. wasGeneratedBy:
  2219. - description: Metadata generated by DANDI cli
  2220. endDate: '2024-01-30T11:57:51.983009-05:00'
  2221. id: urn:uuid:04f3748b-7e9c-4203-9c90-48c63abbf0aa
  2222. name: Metadata generation
  2223. schemaKey: Activity
  2224. startDate: '2024-01-30T11:57:51.983009-05:00'
  2225. wasAssociatedWith:
  2226. - identifier: RRID:SCR_019009
  2227. name: DANDI Command Line Interface
  2228. schemaKey: Software
  2229. url: https://github.com/dandi/dandi-cli
  2230. version: 0.59.0
  2231. - description: Metadata generated by DANDI cli
  2232. endDate: '2024-01-30T11:57:52.900775-05:00'
  2233. id: urn:uuid:3aebc58a-f5f9-4690-b238-fd35818ad2f8
  2234. name: Metadata generation
  2235. schemaKey: Activity
  2236. startDate: '2024-01-30T11:57:52.900775-05:00'
  2237. wasAssociatedWith:
  2238. - identifier: RRID:SCR_019009
  2239. name: DANDI Command Line Interface
  2240. schemaKey: Software
  2241. url: https://github.com/dandi/dandi-cli
  2242. version: 0.59.0
  2243. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2244. access:
  2245. - schemaKey: AccessRequirements
  2246. status: dandi:EmbargoedAccess
  2247. blobDateModified: '2024-01-30T11:57:08.925428-05:00'
  2248. contentSize: 321
  2249. contentUrl:
  2250. - https://api.dandiarchive.org/api/assets/1421e91f-1957-425b-aec7-3c3c7569ed42/download/
  2251. - https://dandiarchive.s3.amazonaws.com/blobs/63a/2dd/63a2dd07-70fb-43e0-9c67-1a25a29c49b7
  2252. dateModified: '2024-01-30T11:57:54.342420-05:00'
  2253. digest:
  2254. dandi:dandi-etag: 0f5ed2232f7c40f3ce0ca27686818b68-1
  2255. dandi:sha2-256: df2302aea146d2e183060c99c4ed71d756778dd40b6df8173728ffb610db5052
  2256. encodingFormat: application/json
  2257. id: dandiasset:1421e91f-1957-425b-aec7-3c3c7569ed42
  2258. identifier: 1421e91f-1957-425b-aec7-3c3c7569ed42
  2259. path: derivatives/MRI-pipeline/sub-SP002/anat/sub-SP002_ses-MRI_flip-3_chunk-1_VFA.json
  2260. schemaKey: Asset
  2261. schemaVersion: 0.6.4
  2262. wasAttributedTo: []
  2263. wasGeneratedBy:
  2264. - description: Metadata generated by DANDI cli
  2265. endDate: '2024-01-30T11:57:53.055502-05:00'
  2266. id: urn:uuid:5c1b39f6-ca97-43fd-84fe-74cc91b9b19a
  2267. name: Metadata generation
  2268. schemaKey: Activity
  2269. startDate: '2024-01-30T11:57:53.055502-05:00'
  2270. wasAssociatedWith:
  2271. - identifier: RRID:SCR_019009
  2272. name: DANDI Command Line Interface
  2273. schemaKey: Software
  2274. url: https://github.com/dandi/dandi-cli
  2275. version: 0.59.0
  2276. - description: Metadata generated by DANDI cli
  2277. endDate: '2024-01-30T11:57:54.342396-05:00'
  2278. id: urn:uuid:30705c31-ae7d-4f01-b18c-a5fd663cb628
  2279. name: Metadata generation
  2280. schemaKey: Activity
  2281. startDate: '2024-01-30T11:57:54.342396-05:00'
  2282. wasAssociatedWith:
  2283. - identifier: RRID:SCR_019009
  2284. name: DANDI Command Line Interface
  2285. schemaKey: Software
  2286. url: https://github.com/dandi/dandi-cli
  2287. version: 0.59.0
  2288. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2289. access:
  2290. - schemaKey: AccessRequirements
  2291. status: dandi:EmbargoedAccess
  2292. blobDateModified: '2024-01-23T15:01:04.930645-05:00'
  2293. contentSize: 162
  2294. contentUrl:
  2295. - https://api.dandiarchive.org/api/assets/ac76932d-0d6e-46f7-873a-f939e7ba1ae0/download/
  2296. - https://dandiarchive.s3.amazonaws.com/blobs/291/759/29175916-b856-4f07-84f6-2ee9461a2711
  2297. dateModified: '2024-01-30T11:57:58.287168-05:00'
  2298. digest:
  2299. dandi:dandi-etag: 90cda07316bea8b8af5257ece5492fc8-1
  2300. dandi:sha2-256: 6e8399a7365cd5917122371b8e7c7e364dac581b546c107fd22b8ce3e374b367
  2301. encodingFormat: application/json
  2302. id: dandiasset:ac76932d-0d6e-46f7-873a-f939e7ba1ae0
  2303. identifier: ac76932d-0d6e-46f7-873a-f939e7ba1ae0
  2304. path: derivatives/OCT-pipeline/sub-SP002/micr/sub-SP002_ses-OCT_sample-03_res-20um_OCT.json
  2305. schemaKey: Asset
  2306. schemaVersion: 0.6.4
  2307. wasAttributedTo: []
  2308. wasGeneratedBy:
  2309. - description: Metadata generated by DANDI cli
  2310. endDate: '2024-01-30T11:57:57.839238-05:00'
  2311. id: urn:uuid:2a3d3c0d-5a6d-49bd-8a0d-f4f27c87cefd
  2312. name: Metadata generation
  2313. schemaKey: Activity
  2314. startDate: '2024-01-30T11:57:57.839238-05:00'
  2315. wasAssociatedWith:
  2316. - identifier: RRID:SCR_019009
  2317. name: DANDI Command Line Interface
  2318. schemaKey: Software
  2319. url: https://github.com/dandi/dandi-cli
  2320. version: 0.59.0
  2321. - description: Metadata generated by DANDI cli
  2322. endDate: '2024-01-30T11:57:58.287144-05:00'
  2323. id: urn:uuid:d07df04b-2f01-4e09-b43a-76fadbd25ed1
  2324. name: Metadata generation
  2325. schemaKey: Activity
  2326. startDate: '2024-01-30T11:57:58.287144-05:00'
  2327. wasAssociatedWith:
  2328. - identifier: RRID:SCR_019009
  2329. name: DANDI Command Line Interface
  2330. schemaKey: Software
  2331. url: https://github.com/dandi/dandi-cli
  2332. version: 0.59.0
  2333. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2334. access:
  2335. - schemaKey: AccessRequirements
  2336. status: dandi:EmbargoedAccess
  2337. blobDateModified: '2024-01-23T15:00:47.000479-05:00'
  2338. contentSize: 176
  2339. contentUrl:
  2340. - https://api.dandiarchive.org/api/assets/c1f85af0-f4e0-4b25-a822-3965f3dde791/download/
  2341. - https://dandiarchive.s3.amazonaws.com/blobs/faf/4cf/faf4cf3e-cce3-4a51-81d4-b0619dd80429
  2342. dateModified: '2024-01-30T11:57:58.247053-05:00'
  2343. digest:
  2344. dandi:dandi-etag: d024858f45692b81678a97680fc90c58-1
  2345. dandi:sha2-256: b7fbdf8b0eb80f2e81f9425c9874877ef3878cd5d720651468e42c9c268290f4
  2346. encodingFormat: application/json
  2347. id: dandiasset:c1f85af0-f4e0-4b25-a822-3965f3dde791
  2348. identifier: c1f85af0-f4e0-4b25-a822-3965f3dde791
  2349. path: derivatives/OCT-pipeline/sub-SP002/micr/sub-SP002_ses-OCT_sample-02_res-20um_OCT.json
  2350. schemaKey: Asset
  2351. schemaVersion: 0.6.4
  2352. wasAttributedTo: []
  2353. wasGeneratedBy:
  2354. - description: Metadata generated by DANDI cli
  2355. endDate: '2024-01-30T11:57:57.464477-05:00'
  2356. id: urn:uuid:3483e112-aaa4-4599-a5e2-116eed2356f8
  2357. name: Metadata generation
  2358. schemaKey: Activity
  2359. startDate: '2024-01-30T11:57:57.464477-05:00'
  2360. wasAssociatedWith:
  2361. - identifier: RRID:SCR_019009
  2362. name: DANDI Command Line Interface
  2363. schemaKey: Software
  2364. url: https://github.com/dandi/dandi-cli
  2365. version: 0.59.0
  2366. - description: Metadata generated by DANDI cli
  2367. endDate: '2024-01-30T11:57:58.246976-05:00'
  2368. id: urn:uuid:9a19613a-397b-4c21-be17-09b230e61e9c
  2369. name: Metadata generation
  2370. schemaKey: Activity
  2371. startDate: '2024-01-30T11:57:58.246976-05:00'
  2372. wasAssociatedWith:
  2373. - identifier: RRID:SCR_019009
  2374. name: DANDI Command Line Interface
  2375. schemaKey: Software
  2376. url: https://github.com/dandi/dandi-cli
  2377. version: 0.59.0
  2378. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2379. access:
  2380. - schemaKey: AccessRequirements
  2381. status: dandi:EmbargoedAccess
  2382. blobDateModified: '2024-01-23T15:01:25.876838-05:00'
  2383. contentSize: 159
  2384. contentUrl:
  2385. - https://api.dandiarchive.org/api/assets/64c0007f-1f7f-454d-8ba4-9cc5737255f2/download/
  2386. - https://dandiarchive.s3.amazonaws.com/blobs/2ef/49f/2ef49f49-ea1f-42d3-91c0-9a946c994a49
  2387. dateModified: '2024-01-30T11:57:59.471362-05:00'
  2388. digest:
  2389. dandi:dandi-etag: 993364ea6f2294ce227c2270a59d7001-1
  2390. dandi:sha2-256: 64ac10f39e708585554a235f054fc8de8fdfb7cf3e3b0d4a5785b7385c257bbb
  2391. encodingFormat: application/json
  2392. id: dandiasset:64c0007f-1f7f-454d-8ba4-9cc5737255f2
  2393. identifier: 64c0007f-1f7f-454d-8ba4-9cc5737255f2
  2394. path: derivatives/OCT-pipeline/sub-SP002/micr/sub-SP002_ses-OCT_sample-04_res-20um_OCT.json
  2395. schemaKey: Asset
  2396. schemaVersion: 0.6.4
  2397. wasAttributedTo: []
  2398. wasGeneratedBy:
  2399. - description: Metadata generated by DANDI cli
  2400. endDate: '2024-01-30T11:57:59.180165-05:00'
  2401. id: urn:uuid:80f01359-b709-40f8-a544-d52046ec1e96
  2402. name: Metadata generation
  2403. schemaKey: Activity
  2404. startDate: '2024-01-30T11:57:59.180165-05:00'
  2405. wasAssociatedWith:
  2406. - identifier: RRID:SCR_019009
  2407. name: DANDI Command Line Interface
  2408. schemaKey: Software
  2409. url: https://github.com/dandi/dandi-cli
  2410. version: 0.59.0
  2411. - description: Metadata generated by DANDI cli
  2412. endDate: '2024-01-30T11:57:59.471337-05:00'
  2413. id: urn:uuid:3d480541-8078-40fe-8c90-29cad4599a21
  2414. name: Metadata generation
  2415. schemaKey: Activity
  2416. startDate: '2024-01-30T11:57:59.471337-05:00'
  2417. wasAssociatedWith:
  2418. - identifier: RRID:SCR_019009
  2419. name: DANDI Command Line Interface
  2420. schemaKey: Software
  2421. url: https://github.com/dandi/dandi-cli
  2422. version: 0.59.0
  2423. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2424. access:
  2425. - schemaKey: AccessRequirements
  2426. status: dandi:EmbargoedAccess
  2427. blobDateModified: '2024-01-24T17:50:10.641181-05:00'
  2428. contentSize: 141070533
  2429. contentUrl:
  2430. - https://api.dandiarchive.org/api/assets/0d826523-7017-44f1-96a4-1860eb95ab1e/download/
  2431. - https://dandiarchive.s3.amazonaws.com/blobs/b83/b8e/b83b8e2c-ddbf-417e-bf61-a2744dc58f18
  2432. dateModified: '2024-01-30T14:31:55.255260-05:00'
  2433. digest:
  2434. dandi:dandi-etag: db504e872928a0ea6a4ee030cc666bcb-3
  2435. dandi:sha2-256: 4c0478e5e5fad8c9ca6043b1ff803cb773bd883f4c73b4b0ba65c9a45e229250
  2436. encodingFormat: application/gzip
  2437. id: dandiasset:0d826523-7017-44f1-96a4-1860eb95ab1e
  2438. identifier: 0d826523-7017-44f1-96a4-1860eb95ab1e
  2439. path: derivatives/MRI-pipeline/sub-SP002/anat/sub-SP002_ses-MRI_flip-1_chunk-1_VFA.nii.gz
  2440. schemaKey: Asset
  2441. schemaVersion: 0.6.4
  2442. wasAttributedTo: []
  2443. wasGeneratedBy:
  2444. - description: Metadata generated by DANDI cli
  2445. endDate: '2024-01-30T14:31:54.361410-05:00'
  2446. id: urn:uuid:b1563829-8b15-422e-992a-e305ecd1fd76
  2447. name: Metadata generation
  2448. schemaKey: Activity
  2449. startDate: '2024-01-30T14:31:54.361410-05:00'
  2450. wasAssociatedWith:
  2451. - identifier: RRID:SCR_019009
  2452. name: DANDI Command Line Interface
  2453. schemaKey: Software
  2454. url: https://github.com/dandi/dandi-cli
  2455. version: 0.59.0
  2456. - description: Metadata generated by DANDI cli
  2457. endDate: '2024-01-30T14:31:55.255226-05:00'
  2458. id: urn:uuid:7a8a3be3-841d-4e1e-9bba-b3fd53252e9b
  2459. name: Metadata generation
  2460. schemaKey: Activity
  2461. startDate: '2024-01-30T14:31:55.255226-05:00'
  2462. wasAssociatedWith:
  2463. - identifier: RRID:SCR_019009
  2464. name: DANDI Command Line Interface
  2465. schemaKey: Software
  2466. url: https://github.com/dandi/dandi-cli
  2467. version: 0.59.0
  2468. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2469. access:
  2470. - schemaKey: AccessRequirements
  2471. status: dandi:EmbargoedAccess
  2472. blobDateModified: '2024-01-24T17:50:32.743246-05:00'
  2473. contentSize: 139102938
  2474. contentUrl:
  2475. - https://api.dandiarchive.org/api/assets/8bafbab8-790a-4ccf-892c-6b05b9c869d3/download/
  2476. - https://dandiarchive.s3.amazonaws.com/blobs/ff4/1ea/ff41eab2-374f-4a0d-8643-fa90964359e5
  2477. dateModified: '2024-01-30T14:31:56.650636-05:00'
  2478. digest:
  2479. dandi:dandi-etag: e295d3aad4fed9cd4c975fbd88cf1d7b-3
  2480. dandi:sha2-256: a41195ce0d06551fdc9a6bd6072d2d99934ddb480bfe5630491e2216cbebc059
  2481. encodingFormat: application/gzip
  2482. id: dandiasset:8bafbab8-790a-4ccf-892c-6b05b9c869d3
  2483. identifier: 8bafbab8-790a-4ccf-892c-6b05b9c869d3
  2484. path: derivatives/MRI-pipeline/sub-SP002/anat/sub-SP002_ses-MRI_flip-2_chunk-1_VFA.nii.gz
  2485. schemaKey: Asset
  2486. schemaVersion: 0.6.4
  2487. wasAttributedTo: []
  2488. wasGeneratedBy:
  2489. - description: Metadata generated by DANDI cli
  2490. endDate: '2024-01-30T14:31:55.764589-05:00'
  2491. id: urn:uuid:2636d6a8-03f0-48f6-a84c-e2df43fa1cc8
  2492. name: Metadata generation
  2493. schemaKey: Activity
  2494. startDate: '2024-01-30T14:31:55.764589-05:00'
  2495. wasAssociatedWith:
  2496. - identifier: RRID:SCR_019009
  2497. name: DANDI Command Line Interface
  2498. schemaKey: Software
  2499. url: https://github.com/dandi/dandi-cli
  2500. version: 0.59.0
  2501. - description: Metadata generated by DANDI cli
  2502. endDate: '2024-01-30T14:31:56.650602-05:00'
  2503. id: urn:uuid:de275c0b-795a-47de-a225-4c90695654f5
  2504. name: Metadata generation
  2505. schemaKey: Activity
  2506. startDate: '2024-01-30T14:31:56.650602-05:00'
  2507. wasAssociatedWith:
  2508. - identifier: RRID:SCR_019009
  2509. name: DANDI Command Line Interface
  2510. schemaKey: Software
  2511. url: https://github.com/dandi/dandi-cli
  2512. version: 0.59.0
  2513. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2514. access:
  2515. - schemaKey: AccessRequirements
  2516. status: dandi:EmbargoedAccess
  2517. blobDateModified: '2024-01-24T17:50:53.890309-05:00'
  2518. contentSize: 140522748
  2519. contentUrl:
  2520. - https://api.dandiarchive.org/api/assets/b13f71b1-ac46-41e9-9dd0-680592cac3f5/download/
  2521. - https://dandiarchive.s3.amazonaws.com/blobs/02e/035/02e03544-06e5-4a2f-876e-188d646bbe7d
  2522. dateModified: '2024-01-30T14:31:58.296665-05:00'
  2523. digest:
  2524. dandi:dandi-etag: 8d0bb89d81cedd1d6ce452d4c2ef52e6-3
  2525. dandi:sha2-256: eef138d647b5a00e4ce6a254b3f4794bcc45ac82f03e16ce95a5e3a19237fb2a
  2526. encodingFormat: application/gzip
  2527. id: dandiasset:b13f71b1-ac46-41e9-9dd0-680592cac3f5
  2528. identifier: b13f71b1-ac46-41e9-9dd0-680592cac3f5
  2529. path: derivatives/MRI-pipeline/sub-SP002/anat/sub-SP002_ses-MRI_flip-3_chunk-1_VFA.nii.gz
  2530. schemaKey: Asset
  2531. schemaVersion: 0.6.4
  2532. wasAttributedTo: []
  2533. wasGeneratedBy:
  2534. - description: Metadata generated by DANDI cli
  2535. endDate: '2024-01-30T14:31:57.278376-05:00'
  2536. id: urn:uuid:4ffea0a1-1a1f-4ba6-a468-2bd42e1710f2
  2537. name: Metadata generation
  2538. schemaKey: Activity
  2539. startDate: '2024-01-30T14:31:57.278376-05:00'
  2540. wasAssociatedWith:
  2541. - identifier: RRID:SCR_019009
  2542. name: DANDI Command Line Interface
  2543. schemaKey: Software
  2544. url: https://github.com/dandi/dandi-cli
  2545. version: 0.59.0
  2546. - description: Metadata generated by DANDI cli
  2547. endDate: '2024-01-30T14:31:58.296601-05:00'
  2548. id: urn:uuid:202f7cff-497b-4a21-b8c9-56fb98b08645
  2549. name: Metadata generation
  2550. schemaKey: Activity
  2551. startDate: '2024-01-30T14:31:58.296601-05:00'
  2552. wasAssociatedWith:
  2553. - identifier: RRID:SCR_019009
  2554. name: DANDI Command Line Interface
  2555. schemaKey: Software
  2556. url: https://github.com/dandi/dandi-cli
  2557. version: 0.59.0
  2558. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2559. access:
  2560. - schemaKey: AccessRequirements
  2561. status: dandi:EmbargoedAccess
  2562. blobDateModified: '2024-01-30T13:46:53.228294-05:00'
  2563. contentSize: 165
  2564. contentUrl:
  2565. - https://api.dandiarchive.org/api/assets/b42e7748-d8c2-4d5b-a13a-48fe04995354/download/
  2566. - https://dandiarchive.s3.amazonaws.com/blobs/a7d/61c/a7d61c8e-8679-40aa-a02d-ebe7626f5227
  2567. dateModified: '2024-01-30T14:32:13.484331-05:00'
  2568. digest:
  2569. dandi:dandi-etag: fc2571d33debbd36117f739c80e04d5e-1
  2570. dandi:sha2-256: 307c3a6a1694d11af14f54c3dc4fb288f32b663e4b9ba37de3650545824fdbbd
  2571. encodingFormat: application/json
  2572. id: dandiasset:b42e7748-d8c2-4d5b-a13a-48fe04995354
  2573. identifier: b42e7748-d8c2-4d5b-a13a-48fe04995354
  2574. path: rawdata/sub-SP002/ses-OCT/micr/sub-SP002_ses-OCT_sample-01_OCT.json
  2575. schemaKey: Asset
  2576. schemaVersion: 0.6.4
  2577. wasAttributedTo:
  2578. - identifier: SP002
  2579. schemaKey: Participant
  2580. wasGeneratedBy:
  2581. - identifier: OCT
  2582. name: OCT
  2583. schemaKey: Session
  2584. - description: Metadata generated by DANDI cli
  2585. endDate: '2024-01-30T14:32:12.617013-05:00'
  2586. id: urn:uuid:58c306cd-d0c3-4109-a627-c0e1810cf28b
  2587. name: Metadata generation
  2588. schemaKey: Activity
  2589. startDate: '2024-01-30T14:32:12.617013-05:00'
  2590. wasAssociatedWith:
  2591. - identifier: RRID:SCR_019009
  2592. name: DANDI Command Line Interface
  2593. schemaKey: Software
  2594. url: https://github.com/dandi/dandi-cli
  2595. version: 0.59.0
  2596. - description: Metadata generated by DANDI cli
  2597. endDate: '2024-01-30T14:32:13.484283-05:00'
  2598. id: urn:uuid:4245c298-e03e-48c4-a814-c34316f46c96
  2599. name: Metadata generation
  2600. schemaKey: Activity
  2601. startDate: '2024-01-30T14:32:13.484283-05:00'
  2602. wasAssociatedWith:
  2603. - identifier: RRID:SCR_019009
  2604. name: DANDI Command Line Interface
  2605. schemaKey: Software
  2606. url: https://github.com/dandi/dandi-cli
  2607. version: 0.59.0
  2608. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2609. access:
  2610. - schemaKey: AccessRequirements
  2611. status: dandi:EmbargoedAccess
  2612. blobDateModified: '2024-01-30T13:47:11.260458-05:00'
  2613. contentSize: 180
  2614. contentUrl:
  2615. - https://api.dandiarchive.org/api/assets/17a7f235-c802-4038-9619-e8a8b2f813b8/download/
  2616. - https://dandiarchive.s3.amazonaws.com/blobs/df4/444/df444439-297b-4495-992a-0dede798be93
  2617. dateModified: '2024-01-30T14:32:13.956357-05:00'
  2618. digest:
  2619. dandi:dandi-etag: d60a92b52a5d3a06eb85b34f699a44fa-1
  2620. dandi:sha2-256: 8906de453c526dc0367198d9356c3ed2675b38d56a7690864b27dd15b366bffe
  2621. encodingFormat: application/json
  2622. id: dandiasset:17a7f235-c802-4038-9619-e8a8b2f813b8
  2623. identifier: 17a7f235-c802-4038-9619-e8a8b2f813b8
  2624. path: rawdata/sub-SP002/ses-OCT/micr/sub-SP002_ses-OCT_sample-02_OCT.json
  2625. schemaKey: Asset
  2626. schemaVersion: 0.6.4
  2627. wasAttributedTo:
  2628. - identifier: SP002
  2629. schemaKey: Participant
  2630. wasGeneratedBy:
  2631. - identifier: OCT
  2632. name: OCT
  2633. schemaKey: Session
  2634. - description: Metadata generated by DANDI cli
  2635. endDate: '2024-01-30T14:32:13.359762-05:00'
  2636. id: urn:uuid:524863ab-b42c-403d-9533-1750560dc99a
  2637. name: Metadata generation
  2638. schemaKey: Activity
  2639. startDate: '2024-01-30T14:32:13.359762-05:00'
  2640. wasAssociatedWith:
  2641. - identifier: RRID:SCR_019009
  2642. name: DANDI Command Line Interface
  2643. schemaKey: Software
  2644. url: https://github.com/dandi/dandi-cli
  2645. version: 0.59.0
  2646. - description: Metadata generated by DANDI cli
  2647. endDate: '2024-01-30T14:32:13.956315-05:00'
  2648. id: urn:uuid:1f8487c5-fcb0-4fd9-b156-0e252ab2a757
  2649. name: Metadata generation
  2650. schemaKey: Activity
  2651. startDate: '2024-01-30T14:32:13.956315-05:00'
  2652. wasAssociatedWith:
  2653. - identifier: RRID:SCR_019009
  2654. name: DANDI Command Line Interface
  2655. schemaKey: Software
  2656. url: https://github.com/dandi/dandi-cli
  2657. version: 0.59.0
  2658. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2659. access:
  2660. - schemaKey: AccessRequirements
  2661. status: dandi:EmbargoedAccess
  2662. blobDateModified: '2024-01-30T13:47:58.949893-05:00'
  2663. contentSize: 163
  2664. contentUrl:
  2665. - https://api.dandiarchive.org/api/assets/bf5c7866-26af-43c6-b0f2-f850bb60a934/download/
  2666. - https://dandiarchive.s3.amazonaws.com/blobs/ef4/620/ef462007-475a-4a3d-be53-5fe2cadd2cf2
  2667. dateModified: '2024-01-30T14:32:15.210922-05:00'
  2668. digest:
  2669. dandi:dandi-etag: 2ccb6f6629b3e7901055dcc3327e2658-1
  2670. dandi:sha2-256: 95b22ec650d02d2fd8d955055d254afb7e859ea916b2773795f1db1fe3990b41
  2671. encodingFormat: application/json
  2672. id: dandiasset:bf5c7866-26af-43c6-b0f2-f850bb60a934
  2673. identifier: bf5c7866-26af-43c6-b0f2-f850bb60a934
  2674. path: rawdata/sub-SP002/ses-OCT/micr/sub-SP002_ses-OCT_sample-03_OCT.json
  2675. schemaKey: Asset
  2676. schemaVersion: 0.6.4
  2677. wasAttributedTo:
  2678. - identifier: SP002
  2679. schemaKey: Participant
  2680. wasGeneratedBy:
  2681. - identifier: OCT
  2682. name: OCT
  2683. schemaKey: Session
  2684. - description: Metadata generated by DANDI cli
  2685. endDate: '2024-01-30T14:32:14.479093-05:00'
  2686. id: urn:uuid:ee550c00-203f-4f30-acf0-4d9c36bb709a
  2687. name: Metadata generation
  2688. schemaKey: Activity
  2689. startDate: '2024-01-30T14:32:14.479093-05:00'
  2690. wasAssociatedWith:
  2691. - identifier: RRID:SCR_019009
  2692. name: DANDI Command Line Interface
  2693. schemaKey: Software
  2694. url: https://github.com/dandi/dandi-cli
  2695. version: 0.59.0
  2696. - description: Metadata generated by DANDI cli
  2697. endDate: '2024-01-30T14:32:15.210882-05:00'
  2698. id: urn:uuid:20e2947b-28fb-4eaa-84d2-53e45ad1c7b6
  2699. name: Metadata generation
  2700. schemaKey: Activity
  2701. startDate: '2024-01-30T14:32:15.210882-05:00'
  2702. wasAssociatedWith:
  2703. - identifier: RRID:SCR_019009
  2704. name: DANDI Command Line Interface
  2705. schemaKey: Software
  2706. url: https://github.com/dandi/dandi-cli
  2707. version: 0.59.0
  2708. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2709. access:
  2710. - schemaKey: AccessRequirements
  2711. status: dandi:EmbargoedAccess
  2712. blobDateModified: '2024-01-30T13:48:13.918030-05:00'
  2713. contentSize: 159
  2714. contentUrl:
  2715. - https://api.dandiarchive.org/api/assets/29ecf1a1-9de4-453e-943e-18ae85849568/download/
  2716. - https://dandiarchive.s3.amazonaws.com/blobs/971/703/971703a4-22b8-455d-98c6-176cd70a0feb
  2717. dateModified: '2024-01-30T14:32:16.995692-05:00'
  2718. digest:
  2719. dandi:dandi-etag: b72614c3657f52eabf10484131524769-1
  2720. dandi:sha2-256: 97006c98cc1c43a18c9c4e78cb130f47ee8e05d0880918127adc74739031a81a
  2721. encodingFormat: application/json
  2722. id: dandiasset:29ecf1a1-9de4-453e-943e-18ae85849568
  2723. identifier: 29ecf1a1-9de4-453e-943e-18ae85849568
  2724. path: rawdata/sub-SP002/ses-OCT/micr/sub-SP002_ses-OCT_sample-04_OCT.json
  2725. schemaKey: Asset
  2726. schemaVersion: 0.6.4
  2727. wasAttributedTo:
  2728. - identifier: SP002
  2729. schemaKey: Participant
  2730. wasGeneratedBy:
  2731. - identifier: OCT
  2732. name: OCT
  2733. schemaKey: Session
  2734. - description: Metadata generated by DANDI cli
  2735. endDate: '2024-01-30T14:32:16.288373-05:00'
  2736. id: urn:uuid:2921e94e-d9e4-484b-b7ae-82c5792bb41c
  2737. name: Metadata generation
  2738. schemaKey: Activity
  2739. startDate: '2024-01-30T14:32:16.288373-05:00'
  2740. wasAssociatedWith:
  2741. - identifier: RRID:SCR_019009
  2742. name: DANDI Command Line Interface
  2743. schemaKey: Software
  2744. url: https://github.com/dandi/dandi-cli
  2745. version: 0.59.0
  2746. - description: Metadata generated by DANDI cli
  2747. endDate: '2024-01-30T14:32:16.995659-05:00'
  2748. id: urn:uuid:955c7e85-894b-4ffb-9572-7d39dae258ad
  2749. name: Metadata generation
  2750. schemaKey: Activity
  2751. startDate: '2024-01-30T14:32:16.995659-05:00'
  2752. wasAssociatedWith:
  2753. - identifier: RRID:SCR_019009
  2754. name: DANDI Command Line Interface
  2755. schemaKey: Software
  2756. url: https://github.com/dandi/dandi-cli
  2757. version: 0.59.0
  2758. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  2759. access:
  2760. - schemaKey: AccessRequirements
  2761. status: dandi:EmbargoedAccess
  2762. blobDateModified: '2023-10-03T14:32:29.697141-04:00'
  2763. contentSize: 1678
  2764. contentUrl:
  2765. - https://api.dandiarchive.org/api/assets/5bd78758-2d9a-4847-90a2-419fe4b60ae7/download/
  2766. - https://dandiarchive.s3.amazonaws.com/blobs/4c6/0eb/4c60eb48-d7e2-45ea-98f0-1af58b906752
  2767. dateModified: '2024-07-15T11:29:31.507557-04:00'
  2768. digest:
  2769. dandi:dandi-etag: 8981ea0bce8cbe0130da338b32909b39-1
  2770. dandi:sha2-256: 6da578e7444b9e289cd73cfa14fd987405bbef35bf1f65d98d67369462355379
  2771. encodingFormat: application/octet-stream
  2772. id: dandiasset:5bd78758-2d9a-4847-90a2-419fe4b60ae7
  2773. identifier: 5bd78758-2d9a-4847-90a2-419fe4b60ae7
  2774. path: derivatives/MRI-pipeline/sub-SP002/anat/flash30_BrainstemOriented.mgz.lta
  2775. schemaKey: Asset
  2776. schemaVersion: 0.6.7
  2777. wasGeneratedBy:
  2778. - description: Metadata generated by DANDI cli
  2779. endDate: '2024-07-15T11:29:31.004462-04:00'
  2780. id: urn:uuid:01dfbffe-28a4-4e5c-be56-bbe2a6c8dc13
  2781. name: Metadata generation
  2782. schemaKey: Activity
  2783. startDate: '2024-07-15T11:29:31.004462-04:00'
  2784. wasAssociatedWith:
  2785. - identifier: RRID:SCR_019009
  2786. name: DANDI Command Line Interface
  2787. schemaKey: Software
  2788. url: https://github.com/dandi/dandi-cli
  2789. version: 0.62.3
  2790. - description: Metadata generated by DANDI cli
  2791. endDate: '2024-07-15T11:29:31.507493-04:00'
  2792. id: urn:uuid:c60f32cc-6696-4afe-9653-d13d53a5cc8f
  2793. name: Metadata generation
  2794. schemaKey: Activity
  2795. startDate: '2024-07-15T11:29:31.507493-04:00'
  2796. wasAssociatedWith:
  2797. - identifier: RRID:SCR_019009
  2798. name: DANDI Command Line Interface
  2799. schemaKey: Software
  2800. url: https://github.com/dandi/dandi-cli
  2801. version: 0.62.3
  2802. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  2803. access:
  2804. - schemaKey: AccessRequirements
  2805. status: dandi:EmbargoedAccess
  2806. blobDateModified: '2024-02-06T13:30:46.886873-05:00'
  2807. contentSize: 173
  2808. contentUrl:
  2809. - https://api.dandiarchive.org/api/assets/a2958ce9-a5c8-4137-9fd0-ace1ffd0655b/download/
  2810. - https://dandiarchive.s3.amazonaws.com/blobs/8a0/a15/8a0a157a-58d7-463a-885b-796202eefe7d
  2811. dateModified: '2024-07-15T11:29:34.548579-04:00'
  2812. digest:
  2813. dandi:dandi-etag: be589a56cf11aa658c8a8a368c90d299-1
  2814. dandi:sha2-256: f3692617d26821b40426a41de2ddcbdfbf4bc29e59a9f413c9bd6d0bd9b43ca9
  2815. encodingFormat: application/json
  2816. id: dandiasset:a2958ce9-a5c8-4137-9fd0-ace1ffd0655b
  2817. identifier: a2958ce9-a5c8-4137-9fd0-ace1ffd0655b
  2818. path: derivatives/MRI-pipeline/sub-SP002/anat/sub-SP002_ses-MRI_flip-3_chunk-1_to-SP002_xfm.json
  2819. schemaKey: Asset
  2820. schemaVersion: 0.6.7
  2821. wasGeneratedBy:
  2822. - description: Metadata generated by DANDI cli
  2823. endDate: '2024-07-15T11:29:34.217129-04:00'
  2824. id: urn:uuid:7069a42d-fedc-4eb5-a275-c4d578a18093
  2825. name: Metadata generation
  2826. schemaKey: Activity
  2827. startDate: '2024-07-15T11:29:34.217129-04:00'
  2828. wasAssociatedWith:
  2829. - identifier: RRID:SCR_019009
  2830. name: DANDI Command Line Interface
  2831. schemaKey: Software
  2832. url: https://github.com/dandi/dandi-cli
  2833. version: 0.62.3
  2834. - description: Metadata generated by DANDI cli
  2835. endDate: '2024-07-15T11:29:34.548518-04:00'
  2836. id: urn:uuid:738f5381-7476-429a-9efc-c00a0f058c6e
  2837. name: Metadata generation
  2838. schemaKey: Activity
  2839. startDate: '2024-07-15T11:29:34.548518-04:00'
  2840. wasAssociatedWith:
  2841. - identifier: RRID:SCR_019009
  2842. name: DANDI Command Line Interface
  2843. schemaKey: Software
  2844. url: https://github.com/dandi/dandi-cli
  2845. version: 0.62.3
  2846. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  2847. access:
  2848. - schemaKey: AccessRequirements
  2849. status: dandi:EmbargoedAccess
  2850. blobDateModified: '2024-02-06T14:56:31.519148-05:00'
  2851. contentSize: 1735
  2852. contentUrl:
  2853. - https://api.dandiarchive.org/api/assets/a5c0e5ee-5a9d-4e2a-a19d-9cca5f4685f8/download/
  2854. - https://dandiarchive.s3.amazonaws.com/blobs/0e9/e2b/0e9e2bae-2b9c-448d-ac4b-204ca2825de3
  2855. dateModified: '2024-07-15T11:29:34.745872-04:00'
  2856. digest:
  2857. dandi:dandi-etag: 971d269636249c5c65f9610ea3e728e6-1
  2858. dandi:sha2-256: 30893859dd84d018f5c8a5d0b45cd92876c21d3bffde459e8c4cbbca1fc7a567
  2859. encodingFormat: application/octet-stream
  2860. id: dandiasset:a5c0e5ee-5a9d-4e2a-a19d-9cca5f4685f8
  2861. identifier: a5c0e5ee-5a9d-4e2a-a19d-9cca5f4685f8
  2862. path: derivatives/MRI-pipeline/sub-SP002/anat/sub-SP002_ses-MRI_flip-3_chunk-1_to-SP002_xfm.lta
  2863. schemaKey: Asset
  2864. schemaVersion: 0.6.7
  2865. wasGeneratedBy:
  2866. - description: Metadata generated by DANDI cli
  2867. endDate: '2024-07-15T11:29:34.414114-04:00'
  2868. id: urn:uuid:89faf9b0-f319-4472-99d7-a7293e7c483f
  2869. name: Metadata generation
  2870. schemaKey: Activity
  2871. startDate: '2024-07-15T11:29:34.414114-04:00'
  2872. wasAssociatedWith:
  2873. - identifier: RRID:SCR_019009
  2874. name: DANDI Command Line Interface
  2875. schemaKey: Software
  2876. url: https://github.com/dandi/dandi-cli
  2877. version: 0.62.3
  2878. - description: Metadata generated by DANDI cli
  2879. endDate: '2024-07-15T11:29:34.745831-04:00'
  2880. id: urn:uuid:ff97fb64-e00b-49bd-982e-72c34c5c3e80
  2881. name: Metadata generation
  2882. schemaKey: Activity
  2883. startDate: '2024-07-15T11:29:34.745831-04:00'
  2884. wasAssociatedWith:
  2885. - identifier: RRID:SCR_019009
  2886. name: DANDI Command Line Interface
  2887. schemaKey: Software
  2888. url: https://github.com/dandi/dandi-cli
  2889. version: 0.62.3
  2890. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  2891. access:
  2892. - schemaKey: AccessRequirements
  2893. status: dandi:EmbargoedAccess
  2894. blobDateModified: '2024-02-06T13:23:09.788738-05:00'
  2895. contentSize: 165
  2896. contentUrl:
  2897. - https://api.dandiarchive.org/api/assets/3e98c412-b4be-4e3d-8709-662e721cba30/download/
  2898. - https://dandiarchive.s3.amazonaws.com/blobs/d7a/ab9/d7aab918-d0a0-4abd-b116-edd53b379591
  2899. dateModified: '2024-07-15T11:43:55.907615-04:00'
  2900. digest:
  2901. dandi:dandi-etag: bc5150cdd5c99e1981297ab02c89cbff-1
  2902. dandi:sha2-256: e4affd47e0e521bfb16e05146816b85c58ac9e50ef7db0158b86fe0abeb7689c
  2903. encodingFormat: application/json
  2904. id: dandiasset:3e98c412-b4be-4e3d-8709-662e721cba30
  2905. identifier: 3e98c412-b4be-4e3d-8709-662e721cba30
  2906. path: derivatives/OCT-pipeline/sub-SP002/micr/sub-SP002_ses-OCT_sample-01_res-20um_OCT.json
  2907. schemaKey: Asset
  2908. schemaVersion: 0.6.7
  2909. wasGeneratedBy:
  2910. - description: Metadata generated by DANDI cli
  2911. endDate: '2024-07-15T11:43:54.388406-04:00'
  2912. id: urn:uuid:83534e7b-f35c-41f4-ae5c-6f3cde372951
  2913. name: Metadata generation
  2914. schemaKey: Activity
  2915. startDate: '2024-07-15T11:43:54.388406-04:00'
  2916. wasAssociatedWith:
  2917. - identifier: RRID:SCR_019009
  2918. name: DANDI Command Line Interface
  2919. schemaKey: Software
  2920. url: https://github.com/dandi/dandi-cli
  2921. version: 0.62.3
  2922. - description: Metadata generated by DANDI cli
  2923. endDate: '2024-07-15T11:43:55.907564-04:00'
  2924. id: urn:uuid:fa95ee7b-a5e2-42f1-8fcb-cf0d016d89a9
  2925. name: Metadata generation
  2926. schemaKey: Activity
  2927. startDate: '2024-07-15T11:43:55.907564-04:00'
  2928. wasAssociatedWith:
  2929. - identifier: RRID:SCR_019009
  2930. name: DANDI Command Line Interface
  2931. schemaKey: Software
  2932. url: https://github.com/dandi/dandi-cli
  2933. version: 0.62.3
  2934. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  2935. access:
  2936. - schemaKey: AccessRequirements
  2937. status: dandi:EmbargoedAccess
  2938. blobDateModified: '2024-02-06T13:33:57.024594-05:00'
  2939. contentSize: 180
  2940. contentUrl:
  2941. - https://api.dandiarchive.org/api/assets/94023814-169a-47a2-84d0-3cf14d083060/download/
  2942. - https://dandiarchive.s3.amazonaws.com/blobs/c8d/d70/c8dd70d6-47ca-4d88-b273-2484caad89fc
  2943. dateModified: '2024-07-15T11:43:56.174881-04:00'
  2944. digest:
  2945. dandi:dandi-etag: e112faabd4a3d4401ef1e29edfdd7bde-1
  2946. dandi:sha2-256: 588d0c89e6ab89b2ec7efbdb9cc648c34516ef04e89ae9df26855dbf8fc119e1
  2947. encodingFormat: application/json
  2948. id: dandiasset:94023814-169a-47a2-84d0-3cf14d083060
  2949. identifier: 94023814-169a-47a2-84d0-3cf14d083060
  2950. path: derivatives/OCT-pipeline/sub-SP002/micr/sub-SP002_ses-OCT_sample-01_to-SP002_xfm.json
  2951. schemaKey: Asset
  2952. schemaVersion: 0.6.7
  2953. wasGeneratedBy:
  2954. - description: Metadata generated by DANDI cli
  2955. endDate: '2024-07-15T11:43:55.440859-04:00'
  2956. id: urn:uuid:a963bebb-4746-43e7-9b7d-4de6bdae5131
  2957. name: Metadata generation
  2958. schemaKey: Activity
  2959. startDate: '2024-07-15T11:43:55.440859-04:00'
  2960. wasAssociatedWith:
  2961. - identifier: RRID:SCR_019009
  2962. name: DANDI Command Line Interface
  2963. schemaKey: Software
  2964. url: https://github.com/dandi/dandi-cli
  2965. version: 0.62.3
  2966. - description: Metadata generated by DANDI cli
  2967. endDate: '2024-07-15T11:43:56.174835-04:00'
  2968. id: urn:uuid:ab78b452-261f-4466-a6e1-aa8b1c7ab59d
  2969. name: Metadata generation
  2970. schemaKey: Activity
  2971. startDate: '2024-07-15T11:43:56.174835-04:00'
  2972. wasAssociatedWith:
  2973. - identifier: RRID:SCR_019009
  2974. name: DANDI Command Line Interface
  2975. schemaKey: Software
  2976. url: https://github.com/dandi/dandi-cli
  2977. version: 0.62.3
  2978. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  2979. access:
  2980. - schemaKey: AccessRequirements
  2981. status: dandi:EmbargoedAccess
  2982. blobDateModified: '2024-02-06T13:34:12.314733-05:00'
  2983. contentSize: 180
  2984. contentUrl:
  2985. - https://api.dandiarchive.org/api/assets/f71b0daa-df97-430c-8b05-36a2db8f8a1f/download/
  2986. - https://dandiarchive.s3.amazonaws.com/blobs/27d/4e4/27d4e4bb-3683-42d2-98ff-84e11fb4165b
  2987. dateModified: '2024-07-15T11:43:59.335201-04:00'
  2988. digest:
  2989. dandi:dandi-etag: 969fb0a5f416bd9a36a4658586b7844d-1
  2990. dandi:sha2-256: 781f708c89a87f9ae225934c0e2366f7e180a02f3ac1cab3e2081863c7e58803
  2991. encodingFormat: application/json
  2992. id: dandiasset:f71b0daa-df97-430c-8b05-36a2db8f8a1f
  2993. identifier: f71b0daa-df97-430c-8b05-36a2db8f8a1f
  2994. path: derivatives/OCT-pipeline/sub-SP002/micr/sub-SP002_ses-OCT_sample-02_to-SP002_xfm.json
  2995. schemaKey: Asset
  2996. schemaVersion: 0.6.7
  2997. wasGeneratedBy:
  2998. - description: Metadata generated by DANDI cli
  2999. endDate: '2024-07-15T11:43:58.681834-04:00'
  3000. id: urn:uuid:eafe66fb-e51e-45b4-b8f1-2fe3ddf70624
  3001. name: Metadata generation
  3002. schemaKey: Activity
  3003. startDate: '2024-07-15T11:43:58.681834-04:00'
  3004. wasAssociatedWith:
  3005. - identifier: RRID:SCR_019009
  3006. name: DANDI Command Line Interface
  3007. schemaKey: Software
  3008. url: https://github.com/dandi/dandi-cli
  3009. version: 0.62.3
  3010. - description: Metadata generated by DANDI cli
  3011. endDate: '2024-07-15T11:43:59.335170-04:00'
  3012. id: urn:uuid:cd837d68-a81e-4f43-9e20-6a2602afdc53
  3013. name: Metadata generation
  3014. schemaKey: Activity
  3015. startDate: '2024-07-15T11:43:59.335170-04:00'
  3016. wasAssociatedWith:
  3017. - identifier: RRID:SCR_019009
  3018. name: DANDI Command Line Interface
  3019. schemaKey: Software
  3020. url: https://github.com/dandi/dandi-cli
  3021. version: 0.62.3
  3022. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  3023. access:
  3024. - schemaKey: AccessRequirements
  3025. status: dandi:EmbargoedAccess
  3026. blobDateModified: '2024-02-06T13:34:24.632845-05:00'
  3027. contentSize: 180
  3028. contentUrl:
  3029. - https://api.dandiarchive.org/api/assets/20534fe5-dd89-4a2f-b27f-c03d64620c6b/download/
  3030. - https://dandiarchive.s3.amazonaws.com/blobs/71c/9d9/71c9d90b-1764-4b74-bd52-ed58164812f1
  3031. dateModified: '2024-07-15T11:44:02.804915-04:00'
  3032. digest:
  3033. dandi:dandi-etag: 90bd5dc8341db8c2dba63604cb86557d-1
  3034. dandi:sha2-256: 2e4223815a9cea0ce59466c5a0a5a6feca678ffd5745143d7f75294b641b8ae6
  3035. encodingFormat: application/json
  3036. id: dandiasset:20534fe5-dd89-4a2f-b27f-c03d64620c6b
  3037. identifier: 20534fe5-dd89-4a2f-b27f-c03d64620c6b
  3038. path: derivatives/OCT-pipeline/sub-SP002/micr/sub-SP002_ses-OCT_sample-03_to-SP002_xfm.json
  3039. schemaKey: Asset
  3040. schemaVersion: 0.6.7
  3041. wasGeneratedBy:
  3042. - description: Metadata generated by DANDI cli
  3043. endDate: '2024-07-15T11:44:02.499736-04:00'
  3044. id: urn:uuid:07483fd1-d1aa-47f2-a7e9-a8aa88733262
  3045. name: Metadata generation
  3046. schemaKey: Activity
  3047. startDate: '2024-07-15T11:44:02.499736-04:00'
  3048. wasAssociatedWith:
  3049. - identifier: RRID:SCR_019009
  3050. name: DANDI Command Line Interface
  3051. schemaKey: Software
  3052. url: https://github.com/dandi/dandi-cli
  3053. version: 0.62.3
  3054. - description: Metadata generated by DANDI cli
  3055. endDate: '2024-07-15T11:44:02.804860-04:00'
  3056. id: urn:uuid:2131863e-7efe-4156-abc7-a23c0f31bb0c
  3057. name: Metadata generation
  3058. schemaKey: Activity
  3059. startDate: '2024-07-15T11:44:02.804860-04:00'
  3060. wasAssociatedWith:
  3061. - identifier: RRID:SCR_019009
  3062. name: DANDI Command Line Interface
  3063. schemaKey: Software
  3064. url: https://github.com/dandi/dandi-cli
  3065. version: 0.62.3
  3066. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  3067. access:
  3068. - schemaKey: AccessRequirements
  3069. status: dandi:EmbargoedAccess
  3070. blobDateModified: '2024-02-06T13:34:37.542962-05:00'
  3071. contentSize: 180
  3072. contentUrl:
  3073. - https://api.dandiarchive.org/api/assets/b3ac10a1-742a-4f40-9e99-a9c79af90c2e/download/
  3074. - https://dandiarchive.s3.amazonaws.com/blobs/adc/4d9/adc4d942-3cb7-493d-ad1a-34df323f614a
  3075. dateModified: '2024-07-15T11:44:26.155287-04:00'
  3076. digest:
  3077. dandi:dandi-etag: 899813e64021481f8e785993df05a29d-1
  3078. dandi:sha2-256: 86cb41b79d0bfae74b976decf14697a68ad487283822e4980f6794ae89564998
  3079. encodingFormat: application/json
  3080. id: dandiasset:b3ac10a1-742a-4f40-9e99-a9c79af90c2e
  3081. identifier: b3ac10a1-742a-4f40-9e99-a9c79af90c2e
  3082. path: derivatives/OCT-pipeline/sub-SP002/micr/sub-SP002_ses-OCT_sample-04_to-SP002_xfm.json
  3083. schemaKey: Asset
  3084. schemaVersion: 0.6.7
  3085. wasGeneratedBy:
  3086. - description: Metadata generated by DANDI cli
  3087. endDate: '2024-07-15T11:44:25.828645-04:00'
  3088. id: urn:uuid:6b97c210-db1a-459e-a312-ce7ac55079d8
  3089. name: Metadata generation
  3090. schemaKey: Activity
  3091. startDate: '2024-07-15T11:44:25.828645-04:00'
  3092. wasAssociatedWith:
  3093. - identifier: RRID:SCR_019009
  3094. name: DANDI Command Line Interface
  3095. schemaKey: Software
  3096. url: https://github.com/dandi/dandi-cli
  3097. version: 0.62.3
  3098. - description: Metadata generated by DANDI cli
  3099. endDate: '2024-07-15T11:44:26.155236-04:00'
  3100. id: urn:uuid:58fa81d7-0bdf-4c29-8c21-660dfb8ca8f1
  3101. name: Metadata generation
  3102. schemaKey: Activity
  3103. startDate: '2024-07-15T11:44:26.155236-04:00'
  3104. wasAssociatedWith:
  3105. - identifier: RRID:SCR_019009
  3106. name: DANDI Command Line Interface
  3107. schemaKey: Software
  3108. url: https://github.com/dandi/dandi-cli
  3109. version: 0.62.3
  3110. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  3111. access:
  3112. - schemaKey: AccessRequirements
  3113. status: dandi:EmbargoedAccess
  3114. blobDateModified: '2024-01-30T14:48:41.696333-05:00'
  3115. contentSize: 371
  3116. contentUrl:
  3117. - https://api.dandiarchive.org/api/assets/79ef9ba7-f120-47d1-a5f3-3fadf27262f8/download/
  3118. - https://dandiarchive.s3.amazonaws.com/blobs/f01/346/f0134662-a319-4d24-8b54-84d807723ecb
  3119. dateModified: '2024-07-15T11:44:28.950447-04:00'
  3120. digest:
  3121. dandi:dandi-etag: 55b32c03b3f847eb3df3590193de59b0-1
  3122. dandi:sha2-256: 0d01681c97f3de7be90d7d1e226ba72a11686a018d08b80141f476d65c7ebe19
  3123. encodingFormat: application/json
  3124. id: dandiasset:79ef9ba7-f120-47d1-a5f3-3fadf27262f8
  3125. identifier: 79ef9ba7-f120-47d1-a5f3-3fadf27262f8
  3126. path: derivatives/dataset_description.json
  3127. schemaKey: Asset
  3128. schemaVersion: 0.6.7
  3129. wasGeneratedBy:
  3130. - description: Metadata generated by DANDI cli
  3131. endDate: '2024-07-15T11:44:28.730488-04:00'
  3132. id: urn:uuid:38787f7e-0664-4a03-827c-b12b72334b48
  3133. name: Metadata generation
  3134. schemaKey: Activity
  3135. startDate: '2024-07-15T11:44:28.730488-04:00'
  3136. wasAssociatedWith:
  3137. - identifier: RRID:SCR_019009
  3138. name: DANDI Command Line Interface
  3139. schemaKey: Software
  3140. url: https://github.com/dandi/dandi-cli
  3141. version: 0.62.3
  3142. - description: Metadata generated by DANDI cli
  3143. endDate: '2024-07-15T11:44:28.950398-04:00'
  3144. id: urn:uuid:f43fd0f8-cb2d-4a5e-8122-78b74606edcd
  3145. name: Metadata generation
  3146. schemaKey: Activity
  3147. startDate: '2024-07-15T11:44:28.950398-04:00'
  3148. wasAssociatedWith:
  3149. - identifier: RRID:SCR_019009
  3150. name: DANDI Command Line Interface
  3151. schemaKey: Software
  3152. url: https://github.com/dandi/dandi-cli
  3153. version: 0.62.3
  3154. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  3155. access:
  3156. - schemaKey: AccessRequirements
  3157. status: dandi:EmbargoedAccess
  3158. blobDateModified: '2024-02-14T11:45:46.781933-05:00'
  3159. contentSize: 651
  3160. contentUrl:
  3161. - https://api.dandiarchive.org/api/assets/b7617080-f47c-40cf-94ed-460c52e2254b/download/
  3162. - https://dandiarchive.s3.amazonaws.com/blobs/a33/b12/a33b1227-f1fd-4273-be68-de963aabd614
  3163. dateModified: '2024-07-15T11:44:30.441049-04:00'
  3164. digest:
  3165. dandi:dandi-etag: cba47a4385046832c76c687446b79ae0-1
  3166. dandi:sha2-256: 003ce1feb56223b1fb0a8d4621d679818dbb82bf096c52c9daf35384d677426c
  3167. encodingFormat: application/json
  3168. id: dandiasset:b7617080-f47c-40cf-94ed-460c52e2254b
  3169. identifier: b7617080-f47c-40cf-94ed-460c52e2254b
  3170. path: participants.json
  3171. schemaKey: Asset
  3172. schemaVersion: 0.6.7
  3173. wasAttributedTo: []
  3174. wasGeneratedBy:
  3175. - description: Metadata generated by DANDI cli
  3176. endDate: '2024-07-15T11:44:30.187309-04:00'
  3177. id: urn:uuid:ea65c25c-7af8-4234-8b05-3302419b814e
  3178. name: Metadata generation
  3179. schemaKey: Activity
  3180. startDate: '2024-07-15T11:44:30.187309-04:00'
  3181. wasAssociatedWith:
  3182. - identifier: RRID:SCR_019009
  3183. name: DANDI Command Line Interface
  3184. schemaKey: Software
  3185. url: https://github.com/dandi/dandi-cli
  3186. version: 0.62.3
  3187. - description: Metadata generated by DANDI cli
  3188. endDate: '2024-07-15T11:44:30.440996-04:00'
  3189. id: urn:uuid:9b584ac2-9767-4ce0-8a8a-67e6942d7b90
  3190. name: Metadata generation
  3191. schemaKey: Activity
  3192. startDate: '2024-07-15T11:44:30.440996-04:00'
  3193. wasAssociatedWith:
  3194. - identifier: RRID:SCR_019009
  3195. name: DANDI Command Line Interface
  3196. schemaKey: Software
  3197. url: https://github.com/dandi/dandi-cli
  3198. version: 0.62.3
  3199. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  3200. access:
  3201. - schemaKey: AccessRequirements
  3202. status: dandi:EmbargoedAccess
  3203. blobDateModified: '2024-02-06T13:04:48.704805-05:00'
  3204. contentSize: 48
  3205. contentUrl:
  3206. - https://api.dandiarchive.org/api/assets/b4082afd-5343-4b27-914c-4e60aaf92815/download/
  3207. - https://dandiarchive.s3.amazonaws.com/blobs/e48/d26/e48d261f-2ccd-4597-9ef5-acf52a8945df
  3208. dateModified: '2024-07-15T11:44:31.980089-04:00'
  3209. digest:
  3210. dandi:dandi-etag: 11388fc2440da060752f392b73ec8a9d-1
  3211. dandi:sha2-256: 3314819d2baf964448ce305964bb3f975563b9a54288f25429c9af9a23ef067e
  3212. encodingFormat: text/tab-separated-values
  3213. id: dandiasset:b4082afd-5343-4b27-914c-4e60aaf92815
  3214. identifier: b4082afd-5343-4b27-914c-4e60aaf92815
  3215. path: participants.tsv
  3216. schemaKey: Asset
  3217. schemaVersion: 0.6.7
  3218. wasAttributedTo: []
  3219. wasGeneratedBy:
  3220. - description: Metadata generated by DANDI cli
  3221. endDate: '2024-07-15T11:44:31.467804-04:00'
  3222. id: urn:uuid:5ad6c844-ee5c-4276-b736-a76b743528fe
  3223. name: Metadata generation
  3224. schemaKey: Activity
  3225. startDate: '2024-07-15T11:44:31.467804-04:00'
  3226. wasAssociatedWith:
  3227. - identifier: RRID:SCR_019009
  3228. name: DANDI Command Line Interface
  3229. schemaKey: Software
  3230. url: https://github.com/dandi/dandi-cli
  3231. version: 0.62.3
  3232. - description: Metadata generated by DANDI cli
  3233. endDate: '2024-07-15T11:44:31.980028-04:00'
  3234. id: urn:uuid:fddae54a-b1e6-4b83-92de-3ea8d96b8c80
  3235. name: Metadata generation
  3236. schemaKey: Activity
  3237. startDate: '2024-07-15T11:44:31.980028-04:00'
  3238. wasAssociatedWith:
  3239. - identifier: RRID:SCR_019009
  3240. name: DANDI Command Line Interface
  3241. schemaKey: Software
  3242. url: https://github.com/dandi/dandi-cli
  3243. version: 0.62.3
  3244. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  3245. access:
  3246. - schemaKey: AccessRequirements
  3247. status: dandi:EmbargoedAccess
  3248. blobDateModified: '2024-01-29T15:46:46.189424-05:00'
  3249. contentSize: 364
  3250. contentUrl:
  3251. - https://api.dandiarchive.org/api/assets/e756e74b-4a7e-4820-987f-504844a250b5/download/
  3252. - https://dandiarchive.s3.amazonaws.com/blobs/7a6/9a0/7a69a066-3d5d-4cb1-b221-34a199ff1b06
  3253. dateModified: '2024-07-15T11:44:33.410341-04:00'
  3254. digest:
  3255. dandi:dandi-etag: ab54668b46b7fe3cbb6faebdecc4fdcf-1
  3256. dandi:sha2-256: a14d5d6705d6c1e85e9cc29f5b137155d864934bf5f7a116861204331452f47a
  3257. encodingFormat: application/json
  3258. id: dandiasset:e756e74b-4a7e-4820-987f-504844a250b5
  3259. identifier: e756e74b-4a7e-4820-987f-504844a250b5
  3260. path: rawdata/dataset_description.json
  3261. schemaKey: Asset
  3262. schemaVersion: 0.6.7
  3263. wasGeneratedBy:
  3264. - description: Metadata generated by DANDI cli
  3265. endDate: '2024-07-15T11:44:33.135320-04:00'
  3266. id: urn:uuid:5477e46e-574a-4b2e-8874-96b010440d20
  3267. name: Metadata generation
  3268. schemaKey: Activity
  3269. startDate: '2024-07-15T11:44:33.135320-04:00'
  3270. wasAssociatedWith:
  3271. - identifier: RRID:SCR_019009
  3272. name: DANDI Command Line Interface
  3273. schemaKey: Software
  3274. url: https://github.com/dandi/dandi-cli
  3275. version: 0.62.3
  3276. - description: Metadata generated by DANDI cli
  3277. endDate: '2024-07-15T11:44:33.410278-04:00'
  3278. id: urn:uuid:ffcdc7de-8271-4f61-8792-dafc88f95f1b
  3279. name: Metadata generation
  3280. schemaKey: Activity
  3281. startDate: '2024-07-15T11:44:33.410278-04:00'
  3282. wasAssociatedWith:
  3283. - identifier: RRID:SCR_019009
  3284. name: DANDI Command Line Interface
  3285. schemaKey: Software
  3286. url: https://github.com/dandi/dandi-cli
  3287. version: 0.62.3
  3288. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  3289. access:
  3290. - schemaKey: AccessRequirements
  3291. status: dandi:EmbargoedAccess
  3292. blobDateModified: '2024-01-11T11:40:45.867661-05:00'
  3293. contentSize: 4372647752
  3294. contentUrl:
  3295. - https://api.dandiarchive.org/api/assets/e87473b4-9fbc-4934-9ce3-35bd57b7076a/download/
  3296. - https://dandiarchive.s3.amazonaws.com/blobs/502/5b5/5025b55f-11f9-4cc3-a9fe-32428d2eff01
  3297. dateModified: '2024-07-15T11:51:48.596031-04:00'
  3298. digest:
  3299. dandi:dandi-etag: b04fa16bd2a5bb18d1b37c725f6bf6b5-66
  3300. dandi:sha2-256: a1fb49df200a5e18fd6f62bb944f323fd5ea521aec029d4b88a487f5faaba3ce
  3301. encodingFormat: application/octet-stream
  3302. id: dandiasset:e87473b4-9fbc-4934-9ce3-35bd57b7076a
  3303. identifier: e87473b4-9fbc-4934-9ce3-35bd57b7076a
  3304. path: rawdata/sub-SP002/ses-OCT/micr/sub-SP002_ses-OCT_sample-04_OCT.nii
  3305. schemaKey: Asset
  3306. schemaVersion: 0.6.7
  3307. wasGeneratedBy:
  3308. - description: Metadata generated by DANDI cli
  3309. endDate: '2024-07-15T11:51:48.350142-04:00'
  3310. id: urn:uuid:f145a7bb-fb05-4cc7-8dee-60c9119dc809
  3311. name: Metadata generation
  3312. schemaKey: Activity
  3313. startDate: '2024-07-15T11:51:48.350142-04:00'
  3314. wasAssociatedWith:
  3315. - identifier: RRID:SCR_019009
  3316. name: DANDI Command Line Interface
  3317. schemaKey: Software
  3318. url: https://github.com/dandi/dandi-cli
  3319. version: 0.62.3
  3320. - description: Metadata generated by DANDI cli
  3321. endDate: '2024-07-15T11:51:48.595982-04:00'
  3322. id: urn:uuid:d8810833-ecbd-46d3-8762-4ea793d28929
  3323. name: Metadata generation
  3324. schemaKey: Activity
  3325. startDate: '2024-07-15T11:51:48.595982-04:00'
  3326. wasAssociatedWith:
  3327. - identifier: RRID:SCR_019009
  3328. name: DANDI Command Line Interface
  3329. schemaKey: Software
  3330. url: https://github.com/dandi/dandi-cli
  3331. version: 0.62.3
  3332. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  3333. access:
  3334. - schemaKey: AccessRequirements
  3335. status: dandi:EmbargoedAccess
  3336. blobDateModified: '2024-01-30T13:31:09.165119-05:00'
  3337. contentSize: 9159732136
  3338. contentUrl:
  3339. - https://api.dandiarchive.org/api/assets/80d6f9c7-bbb7-4c56-8fe4-f9608ea1ebe0/download/
  3340. - https://dandiarchive.s3.amazonaws.com/blobs/c6d/399/c6d399a2-9548-4fd2-bd8f-9cc509434d47
  3341. dateModified: '2024-07-15T11:56:16.423361-04:00'
  3342. digest:
  3343. dandi:dandi-etag: e0ca0d327a91a74076e521d5eeb666a2-137
  3344. dandi:sha2-256: 8ae9ebca9a1280a372782fea55a80ad51cefaf36d3d999bc1899e4cd9812c92e
  3345. encodingFormat: application/octet-stream
  3346. id: dandiasset:80d6f9c7-bbb7-4c56-8fe4-f9608ea1ebe0
  3347. identifier: 80d6f9c7-bbb7-4c56-8fe4-f9608ea1ebe0
  3348. path: rawdata/sub-SP002/ses-OCT/micr/sub-SP002_ses-OCT_sample-01_OCT.nii
  3349. schemaKey: Asset
  3350. schemaVersion: 0.6.7
  3351. wasGeneratedBy:
  3352. - description: Metadata generated by DANDI cli
  3353. endDate: '2024-07-15T11:50:22.327770-04:00'
  3354. id: urn:uuid:60577343-8c20-4bc1-9f0b-834366688ff6
  3355. name: Metadata generation
  3356. schemaKey: Activity
  3357. startDate: '2024-07-15T11:50:22.327770-04:00'
  3358. wasAssociatedWith:
  3359. - identifier: RRID:SCR_019009
  3360. name: DANDI Command Line Interface
  3361. schemaKey: Software
  3362. url: https://github.com/dandi/dandi-cli
  3363. version: 0.62.3
  3364. - description: Metadata generated by DANDI cli
  3365. endDate: '2024-07-15T11:56:16.423223-04:00'
  3366. id: urn:uuid:d65ff9ca-1567-4f43-9fdc-cdfc1cc22b05
  3367. name: Metadata generation
  3368. schemaKey: Activity
  3369. startDate: '2024-07-15T11:56:16.423223-04:00'
  3370. wasAssociatedWith:
  3371. - identifier: RRID:SCR_019009
  3372. name: DANDI Command Line Interface
  3373. schemaKey: Software
  3374. url: https://github.com/dandi/dandi-cli
  3375. version: 0.62.3
  3376. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  3377. access:
  3378. - schemaKey: AccessRequirements
  3379. status: dandi:EmbargoedAccess
  3380. blobDateModified: '2024-01-30T14:10:32.807242-05:00'
  3381. contentSize: 22080411320
  3382. contentUrl:
  3383. - https://api.dandiarchive.org/api/assets/e749d26b-1595-4229-956c-d4eaf12492c2/download/
  3384. - https://dandiarchive.s3.amazonaws.com/blobs/3dc/e76/3dce766d-8c1d-4dd3-9402-3f96f74846fd
  3385. dateModified: '2024-07-15T11:56:37.722204-04:00'
  3386. digest:
  3387. dandi:dandi-etag: dc31cc98c2df26f0f20eb96f0ca20a5d-330
  3388. dandi:sha2-256: 878eecf60ab05d08f2c7eaf9c229dc18f2f3c4c1808919330c272a12e17c094e
  3389. encodingFormat: application/octet-stream
  3390. id: dandiasset:e749d26b-1595-4229-956c-d4eaf12492c2
  3391. identifier: e749d26b-1595-4229-956c-d4eaf12492c2
  3392. path: rawdata/sub-SP002/ses-OCT/micr/sub-SP002_ses-OCT_sample-03_OCT.nii
  3393. schemaKey: Asset
  3394. schemaVersion: 0.6.7
  3395. wasGeneratedBy:
  3396. - description: Metadata generated by DANDI cli
  3397. endDate: '2024-07-15T11:50:24.525875-04:00'
  3398. id: urn:uuid:3bcb4189-205d-432a-8acb-3b07cedeeeab
  3399. name: Metadata generation
  3400. schemaKey: Activity
  3401. startDate: '2024-07-15T11:50:24.525875-04:00'
  3402. wasAssociatedWith:
  3403. - identifier: RRID:SCR_019009
  3404. name: DANDI Command Line Interface
  3405. schemaKey: Software
  3406. url: https://github.com/dandi/dandi-cli
  3407. version: 0.62.3
  3408. - description: Metadata generated by DANDI cli
  3409. endDate: '2024-07-15T11:56:37.722008-04:00'
  3410. id: urn:uuid:67c1465a-1f84-470a-9218-60a1e17f8159
  3411. name: Metadata generation
  3412. schemaKey: Activity
  3413. startDate: '2024-07-15T11:56:37.722008-04:00'
  3414. wasAssociatedWith:
  3415. - identifier: RRID:SCR_019009
  3416. name: DANDI Command Line Interface
  3417. schemaKey: Software
  3418. url: https://github.com/dandi/dandi-cli
  3419. version: 0.62.3
  3420. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  3421. access:
  3422. - schemaKey: AccessRequirements
  3423. status: dandi:EmbargoedAccess
  3424. blobDateModified: '2024-01-23T15:03:59.643418-05:00'
  3425. contentSize: 26292566872
  3426. contentUrl:
  3427. - https://api.dandiarchive.org/api/assets/cef096e9-4f8e-4df5-a0db-d66fe4df6ab2/download/
  3428. - https://dandiarchive.s3.amazonaws.com/blobs/d6c/733/d6c733c3-02b5-4124-9675-203e0b160401
  3429. dateModified: '2024-07-15T12:00:24.847479-04:00'
  3430. digest:
  3431. dandi:dandi-etag: 0fedfe9086796b35051f31b19d1696a6-392
  3432. dandi:sha2-256: a5626691980449438082021e7047aa11cb80fbef6c94d021c32da36d94d6859e
  3433. encodingFormat: application/octet-stream
  3434. id: dandiasset:cef096e9-4f8e-4df5-a0db-d66fe4df6ab2
  3435. identifier: cef096e9-4f8e-4df5-a0db-d66fe4df6ab2
  3436. path: rawdata/sub-SP002/ses-OCT/micr/sub-SP002_ses-OCT_sample-02_OCT.nii
  3437. schemaKey: Asset
  3438. schemaVersion: 0.6.7
  3439. wasGeneratedBy:
  3440. - description: Metadata generated by DANDI cli
  3441. endDate: '2024-07-15T11:50:23.703888-04:00'
  3442. id: urn:uuid:8a39106a-90f3-4c54-9985-46566f6f3501
  3443. name: Metadata generation
  3444. schemaKey: Activity
  3445. startDate: '2024-07-15T11:50:23.703888-04:00'
  3446. wasAssociatedWith:
  3447. - identifier: RRID:SCR_019009
  3448. name: DANDI Command Line Interface
  3449. schemaKey: Software
  3450. url: https://github.com/dandi/dandi-cli
  3451. version: 0.62.3
  3452. - description: Metadata generated by DANDI cli
  3453. endDate: '2024-07-15T12:00:24.847328-04:00'
  3454. id: urn:uuid:d99d913c-51c6-4336-b089-11153b0486b6
  3455. name: Metadata generation
  3456. schemaKey: Activity
  3457. startDate: '2024-07-15T12:00:24.847328-04:00'
  3458. wasAssociatedWith:
  3459. - identifier: RRID:SCR_019009
  3460. name: DANDI Command Line Interface
  3461. schemaKey: Software
  3462. url: https://github.com/dandi/dandi-cli
  3463. version: 0.62.3
  3464. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  3465. access:
  3466. - schemaKey: AccessRequirements
  3467. status: dandi:EmbargoedAccess
  3468. blobDateModified: '2025-03-06T12:31:11.415246-05:00'
  3469. contentSize: 1727
  3470. contentUrl:
  3471. - https://api.dandiarchive.org/api/assets/6a27a06d-1135-4b09-a8b9-e7a9fef20e6b/download/
  3472. - https://dandiarchive.s3.amazonaws.com/blobs/840/e7b/840e7b44-5818-4d6a-9265-3ac08d86e221
  3473. dateModified: '2025-03-10T12:03:28.551148-04:00'
  3474. digest:
  3475. dandi:dandi-etag: 59eb176d26e68b479872f43543cb9690-1
  3476. dandi:sha2-256: 35da87688724b7c2e94c72ae165b8ef0209637469f43097b1df37552b6212d92
  3477. encodingFormat: application/octet-stream
  3478. id: dandiasset:6a27a06d-1135-4b09-a8b9-e7a9fef20e6b
  3479. identifier: 6a27a06d-1135-4b09-a8b9-e7a9fef20e6b
  3480. path: derivatives/OCT-pipeline/sub-SP002/micr/sub-SP002_ses-OCT_sample-01_to-SP002_xfm.lta
  3481. schemaKey: Asset
  3482. schemaVersion: 0.6.9
  3483. wasGeneratedBy:
  3484. - description: Metadata generated by DANDI cli
  3485. endDate: '2025-03-10T12:03:27.991106-04:00'
  3486. id: urn:uuid:647b3513-b551-4f82-aefc-0a306ff28ba1
  3487. name: Metadata generation
  3488. schemaKey: Activity
  3489. startDate: '2025-03-10T12:03:27.991106-04:00'
  3490. wasAssociatedWith:
  3491. - identifier: RRID:SCR_019009
  3492. name: DANDI Command Line Interface
  3493. schemaKey: Software
  3494. url: https://github.com/dandi/dandi-cli
  3495. version: 0.67.0
  3496. - description: Metadata generated by DANDI cli
  3497. endDate: '2025-03-10T12:03:28.551094-04:00'
  3498. id: urn:uuid:19b11940-452d-4c3f-b64b-a0b715b9d6e7
  3499. name: Metadata generation
  3500. schemaKey: Activity
  3501. startDate: '2025-03-10T12:03:28.551094-04:00'
  3502. wasAssociatedWith:
  3503. - identifier: RRID:SCR_019009
  3504. name: DANDI Command Line Interface
  3505. schemaKey: Software
  3506. url: https://github.com/dandi/dandi-cli
  3507. version: 0.67.0
  3508. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  3509. access:
  3510. - schemaKey: AccessRequirements
  3511. status: dandi:OpenAccess
  3512. blobDateModified: '2025-03-06T12:10:23.577680-05:00'
  3513. contentSize: 704760175
  3514. contentUrl:
  3515. - https://api.dandiarchive.org/api/assets/fa5739e4-bb76-4d55-a7d3-e74139159778/download/
  3516. - https://dandiarchive.s3.amazonaws.com/zarr/5b7ab818-3223-4925-9166-fbf5014e6c26/
  3517. dateModified: '2025-03-10T12:03:29.822080-04:00'
  3518. digest:
  3519. dandi:dandi-zarr-checksum: d1f695e11c38290bd47d7e239e3a5301-1574--704760175
  3520. encodingFormat: application/x-zarr
  3521. id: dandiasset:fa5739e4-bb76-4d55-a7d3-e74139159778
  3522. identifier: fa5739e4-bb76-4d55-a7d3-e74139159778
  3523. path: derivatives/OCT-pipeline/sub-SP002/micr/sub-SP002_ses-OCT_sample-01_res-20um_OCT.ome.zarr
  3524. schemaKey: Asset
  3525. schemaVersion: 0.6.9
  3526. wasGeneratedBy:
  3527. - description: Metadata generated by DANDI cli
  3528. endDate: '2025-03-10T12:03:29.822041-04:00'
  3529. id: urn:uuid:6a28defa-2c00-4e00-b64b-56a94d59cc55
  3530. name: Metadata generation
  3531. schemaKey: Activity
  3532. startDate: '2025-03-10T12:03:29.822041-04:00'
  3533. wasAssociatedWith:
  3534. - identifier: RRID:SCR_019009
  3535. name: DANDI Command Line Interface
  3536. schemaKey: Software
  3537. url: https://github.com/dandi/dandi-cli
  3538. version: 0.67.0
  3539. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  3540. access:
  3541. - schemaKey: AccessRequirements
  3542. status: dandi:EmbargoedAccess
  3543. blobDateModified: '2025-03-06T12:31:11.420247-05:00'
  3544. contentSize: 1718
  3545. contentUrl:
  3546. - https://api.dandiarchive.org/api/assets/3dc1b79e-5b70-4839-8252-01e7cab22021/download/
  3547. - https://dandiarchive.s3.amazonaws.com/blobs/299/f5c/299f5c2e-d99c-4bcf-90ee-8772613275eb
  3548. dateModified: '2025-03-10T12:04:11.938067-04:00'
  3549. digest:
  3550. dandi:dandi-etag: 4c074dda16682b8d40a6bc190ec13889-1
  3551. dandi:sha2-256: 5f97eb5bb851e214f93503efeb24dfe3094806ffd1fd24c78f4791d848aed553
  3552. encodingFormat: application/octet-stream
  3553. id: dandiasset:3dc1b79e-5b70-4839-8252-01e7cab22021
  3554. identifier: 3dc1b79e-5b70-4839-8252-01e7cab22021
  3555. path: derivatives/OCT-pipeline/sub-SP002/micr/sub-SP002_ses-OCT_sample-02_to-SP002_xfm.lta
  3556. schemaKey: Asset
  3557. schemaVersion: 0.6.9
  3558. wasGeneratedBy:
  3559. - description: Metadata generated by DANDI cli
  3560. endDate: '2025-03-10T12:04:11.141233-04:00'
  3561. id: urn:uuid:2024f4d1-cecd-48dc-9d6c-e26c3fa907b8
  3562. name: Metadata generation
  3563. schemaKey: Activity
  3564. startDate: '2025-03-10T12:04:11.141233-04:00'
  3565. wasAssociatedWith:
  3566. - identifier: RRID:SCR_019009
  3567. name: DANDI Command Line Interface
  3568. schemaKey: Software
  3569. url: https://github.com/dandi/dandi-cli
  3570. version: 0.67.0
  3571. - description: Metadata generated by DANDI cli
  3572. endDate: '2025-03-10T12:04:11.938021-04:00'
  3573. id: urn:uuid:a21201f2-e981-43b9-96f2-fdf072e939d0
  3574. name: Metadata generation
  3575. schemaKey: Activity
  3576. startDate: '2025-03-10T12:04:11.938021-04:00'
  3577. wasAssociatedWith:
  3578. - identifier: RRID:SCR_019009
  3579. name: DANDI Command Line Interface
  3580. schemaKey: Software
  3581. url: https://github.com/dandi/dandi-cli
  3582. version: 0.67.0
  3583. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  3584. access:
  3585. - schemaKey: AccessRequirements
  3586. status: dandi:EmbargoedAccess
  3587. blobDateModified: '2025-03-06T12:31:11.426247-05:00'
  3588. contentSize: 1752
  3589. contentUrl:
  3590. - https://api.dandiarchive.org/api/assets/74492864-28fe-4221-8f8b-cdff04c6c18e/download/
  3591. - https://dandiarchive.s3.amazonaws.com/blobs/ba0/065/ba0065cc-5842-4b9b-9e18-a2793d22d88c
  3592. dateModified: '2025-03-10T12:04:13.173888-04:00'
  3593. digest:
  3594. dandi:dandi-etag: 153a6a0a4079a1a9827e5448cd9f10bc-1
  3595. dandi:sha2-256: f422444188c5bc9c8bcaa778c25062aed7a77e7b0fae0162b8734198bc2eaafb
  3596. encodingFormat: application/octet-stream
  3597. id: dandiasset:74492864-28fe-4221-8f8b-cdff04c6c18e
  3598. identifier: 74492864-28fe-4221-8f8b-cdff04c6c18e
  3599. path: derivatives/OCT-pipeline/sub-SP002/micr/sub-SP002_ses-OCT_sample-03_to-SP002_xfm.lta
  3600. schemaKey: Asset
  3601. schemaVersion: 0.6.9
  3602. wasGeneratedBy:
  3603. - description: Metadata generated by DANDI cli
  3604. endDate: '2025-03-10T12:04:12.486239-04:00'
  3605. id: urn:uuid:6e7d3f4c-ea06-4262-a47a-b252961dbf57
  3606. name: Metadata generation
  3607. schemaKey: Activity
  3608. startDate: '2025-03-10T12:04:12.486239-04:00'
  3609. wasAssociatedWith:
  3610. - identifier: RRID:SCR_019009
  3611. name: DANDI Command Line Interface
  3612. schemaKey: Software
  3613. url: https://github.com/dandi/dandi-cli
  3614. version: 0.67.0
  3615. - description: Metadata generated by DANDI cli
  3616. endDate: '2025-03-10T12:04:13.173656-04:00'
  3617. id: urn:uuid:f4d5817f-da63-4aec-88ac-8b2dde6a978f
  3618. name: Metadata generation
  3619. schemaKey: Activity
  3620. startDate: '2025-03-10T12:04:13.173656-04:00'
  3621. wasAssociatedWith:
  3622. - identifier: RRID:SCR_019009
  3623. name: DANDI Command Line Interface
  3624. schemaKey: Software
  3625. url: https://github.com/dandi/dandi-cli
  3626. version: 0.67.0
  3627. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  3628. access:
  3629. - schemaKey: AccessRequirements
  3630. status: dandi:EmbargoedAccess
  3631. blobDateModified: '2025-03-06T12:31:11.431247-05:00'
  3632. contentSize: 1766
  3633. contentUrl:
  3634. - https://api.dandiarchive.org/api/assets/0b7735f3-011f-4934-adfc-f6503bae1472/download/
  3635. - https://dandiarchive.s3.amazonaws.com/blobs/e3a/ca8/e3aca8e7-84b2-47c2-9ec8-7fd84497570c
  3636. dateModified: '2025-03-10T12:04:14.441485-04:00'
  3637. digest:
  3638. dandi:dandi-etag: 2e917765a8ce393f3042900450f59732-1
  3639. dandi:sha2-256: a0195d97903335565859764987cc5ef910853940bfc172a7223aa7e844e73c1b
  3640. encodingFormat: application/octet-stream
  3641. id: dandiasset:0b7735f3-011f-4934-adfc-f6503bae1472
  3642. identifier: 0b7735f3-011f-4934-adfc-f6503bae1472
  3643. path: derivatives/OCT-pipeline/sub-SP002/micr/sub-SP002_ses-OCT_sample-04_to-SP002_xfm.lta
  3644. schemaKey: Asset
  3645. schemaVersion: 0.6.9
  3646. wasGeneratedBy:
  3647. - description: Metadata generated by DANDI cli
  3648. endDate: '2025-03-10T12:04:13.947684-04:00'
  3649. id: urn:uuid:62f4ccb8-4637-44dc-9c81-1f99d175252d
  3650. name: Metadata generation
  3651. schemaKey: Activity
  3652. startDate: '2025-03-10T12:04:13.947684-04:00'
  3653. wasAssociatedWith:
  3654. - identifier: RRID:SCR_019009
  3655. name: DANDI Command Line Interface
  3656. schemaKey: Software
  3657. url: https://github.com/dandi/dandi-cli
  3658. version: 0.67.0
  3659. - description: Metadata generated by DANDI cli
  3660. endDate: '2025-03-10T12:04:14.441442-04:00'
  3661. id: urn:uuid:565de2d8-e351-4274-9a98-5b8269d0a0c1
  3662. name: Metadata generation
  3663. schemaKey: Activity
  3664. startDate: '2025-03-10T12:04:14.441442-04:00'
  3665. wasAssociatedWith:
  3666. - identifier: RRID:SCR_019009
  3667. name: DANDI Command Line Interface
  3668. schemaKey: Software
  3669. url: https://github.com/dandi/dandi-cli
  3670. version: 0.67.0
  3671. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  3672. access:
  3673. - schemaKey: AccessRequirements
  3674. status: dandi:OpenAccess
  3675. blobDateModified: '2025-03-06T12:26:38.629485-05:00'
  3676. contentSize: 2284884366
  3677. contentUrl:
  3678. - https://api.dandiarchive.org/api/assets/ae2a1fd2-7e39-4c79-b468-058ff1149d08/download/
  3679. - https://dandiarchive.s3.amazonaws.com/zarr/3b341e59-fe85-40ab-8312-5e6552999f01/
  3680. dateModified: '2025-03-10T12:04:20.608267-04:00'
  3681. digest:
  3682. dandi:dandi-zarr-checksum: 72eb3f845f5a00eae8da652dcdc4bb17-3648--2284884366
  3683. encodingFormat: application/x-zarr
  3684. id: dandiasset:ae2a1fd2-7e39-4c79-b468-058ff1149d08
  3685. identifier: ae2a1fd2-7e39-4c79-b468-058ff1149d08
  3686. path: derivatives/OCT-pipeline/sub-SP002/micr/sub-SP002_ses-OCT_sample-03_res-20um_OCT.ome.zarr
  3687. schemaKey: Asset
  3688. schemaVersion: 0.6.9
  3689. wasGeneratedBy:
  3690. - description: Metadata generated by DANDI cli
  3691. endDate: '2025-03-10T12:04:20.608188-04:00'
  3692. id: urn:uuid:c26b1ea8-63e4-4889-8bc9-2d2ef4aef668
  3693. name: Metadata generation
  3694. schemaKey: Activity
  3695. startDate: '2025-03-10T12:04:20.608188-04:00'
  3696. wasAssociatedWith:
  3697. - identifier: RRID:SCR_019009
  3698. name: DANDI Command Line Interface
  3699. schemaKey: Software
  3700. url: https://github.com/dandi/dandi-cli
  3701. version: 0.67.0
  3702. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  3703. access:
  3704. - schemaKey: AccessRequirements
  3705. status: dandi:OpenAccess
  3706. blobDateModified: '2025-03-06T12:24:59.867492-05:00'
  3707. contentSize: 2545482641
  3708. contentUrl:
  3709. - https://api.dandiarchive.org/api/assets/1e85915d-26bd-4b14-b9f6-6e8657e23eb4/download/
  3710. - https://dandiarchive.s3.amazonaws.com/zarr/8c81a4f7-b6cd-46c5-825a-16431702c4d0/
  3711. dateModified: '2025-03-10T12:04:21.002469-04:00'
  3712. digest:
  3713. dandi:dandi-zarr-checksum: 15b82df898e4cc9d5d5b88beb0228835-4003--2545482641
  3714. encodingFormat: application/x-zarr
  3715. id: dandiasset:1e85915d-26bd-4b14-b9f6-6e8657e23eb4
  3716. identifier: 1e85915d-26bd-4b14-b9f6-6e8657e23eb4
  3717. path: derivatives/OCT-pipeline/sub-SP002/micr/sub-SP002_ses-OCT_sample-02_res-20um_OCT.ome.zarr
  3718. schemaKey: Asset
  3719. schemaVersion: 0.6.9
  3720. wasGeneratedBy:
  3721. - description: Metadata generated by DANDI cli
  3722. endDate: '2025-03-10T12:04:21.002437-04:00'
  3723. id: urn:uuid:7707f81c-41b0-4b0e-828b-c25518a43794
  3724. name: Metadata generation
  3725. schemaKey: Activity
  3726. startDate: '2025-03-10T12:04:21.002437-04:00'
  3727. wasAssociatedWith:
  3728. - identifier: RRID:SCR_019009
  3729. name: DANDI Command Line Interface
  3730. schemaKey: Software
  3731. url: https://github.com/dandi/dandi-cli
  3732. version: 0.67.0
  3733. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  3734. access:
  3735. - schemaKey: AccessRequirements
  3736. status: dandi:OpenAccess
  3737. blobDateModified: '2025-03-06T12:31:11.027243-05:00'
  3738. contentSize: 3278740872
  3739. contentUrl:
  3740. - https://api.dandiarchive.org/api/assets/92779b22-a6cf-4928-9138-14c69162067e/download/
  3741. - https://dandiarchive.s3.amazonaws.com/zarr/52e874ce-e623-47a0-a43a-7e32126b7632/
  3742. dateModified: '2025-03-10T12:04:22.080902-04:00'
  3743. digest:
  3744. dandi:dandi-zarr-checksum: ba3094b7c38bae7e2e8c4d1bf4490aeb-5486--3278740872
  3745. encodingFormat: application/x-zarr
  3746. id: dandiasset:92779b22-a6cf-4928-9138-14c69162067e
  3747. identifier: 92779b22-a6cf-4928-9138-14c69162067e
  3748. path: derivatives/OCT-pipeline/sub-SP002/micr/sub-SP002_ses-OCT_sample-04_res-20um_OCT.ome.zarr
  3749. schemaKey: Asset
  3750. schemaVersion: 0.6.9
  3751. wasGeneratedBy:
  3752. - description: Metadata generated by DANDI cli
  3753. endDate: '2025-03-10T12:04:22.080845-04:00'
  3754. id: urn:uuid:d0275d2e-f8dc-4334-a7b9-2f7359386275
  3755. name: Metadata generation
  3756. schemaKey: Activity
  3757. startDate: '2025-03-10T12:04:22.080845-04:00'
  3758. wasAssociatedWith:
  3759. - identifier: RRID:SCR_019009
  3760. name: DANDI Command Line Interface
  3761. schemaKey: Software
  3762. url: https://github.com/dandi/dandi-cli
  3763. version: 0.67.0
  3764. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  3765. access:
  3766. - schemaKey: AccessRequirements
  3767. status: dandi:OpenAccess
  3768. blobDateModified: '2025-03-06T15:14:09.666195-05:00'
  3769. contentSize: 8498618797
  3770. contentUrl:
  3771. - https://api.dandiarchive.org/api/assets/69967e80-6cfb-4d25-b9d3-f3f031190580/download/
  3772. - https://dandiarchive.s3.amazonaws.com/zarr/3fb354b5-1b4e-4bc9-8671-7a46d832ce05/
  3773. dateModified: '2025-03-10T12:04:44.899715-04:00'
  3774. digest:
  3775. dandi:dandi-zarr-checksum: 493ff29bcf09c8cebd30bc37fe795ffc-11236--8498618797
  3776. encodingFormat: application/x-zarr
  3777. id: dandiasset:69967e80-6cfb-4d25-b9d3-f3f031190580
  3778. identifier: 69967e80-6cfb-4d25-b9d3-f3f031190580
  3779. path: rawdata/sub-SP002/ses-OCT/micr/sub-SP002_ses-OCT_sample-01_OCT.ome.zarr
  3780. schemaKey: Asset
  3781. schemaVersion: 0.6.9
  3782. wasGeneratedBy:
  3783. - description: Metadata generated by DANDI cli
  3784. endDate: '2025-03-10T12:04:44.899634-04:00'
  3785. id: urn:uuid:139e2e90-c5f4-4800-9a3f-c1269dcd7c49
  3786. name: Metadata generation
  3787. schemaKey: Activity
  3788. startDate: '2025-03-10T12:04:44.899634-04:00'
  3789. wasAssociatedWith:
  3790. - identifier: RRID:SCR_019009
  3791. name: DANDI Command Line Interface
  3792. schemaKey: Software
  3793. url: https://github.com/dandi/dandi-cli
  3794. version: 0.67.0
  3795. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  3796. access:
  3797. - schemaKey: AccessRequirements
  3798. status: dandi:OpenAccess
  3799. blobDateModified: '2025-03-06T13:34:42.793776-05:00'
  3800. contentSize: 18248536509
  3801. contentUrl:
  3802. - https://api.dandiarchive.org/api/assets/b8c658cd-d820-4d13-b1b9-b4e11772b7c6/download/
  3803. - https://dandiarchive.s3.amazonaws.com/zarr/e9c96afb-fa0a-4a9f-b55e-595cff9c2b97/
  3804. dateModified: '2025-03-10T12:04:50.859663-04:00'
  3805. digest:
  3806. dandi:dandi-zarr-checksum: 9c5458f58e7e06881ae95901a9c92de1-26960--18248536509
  3807. encodingFormat: application/x-zarr
  3808. id: dandiasset:b8c658cd-d820-4d13-b1b9-b4e11772b7c6
  3809. identifier: b8c658cd-d820-4d13-b1b9-b4e11772b7c6
  3810. path: rawdata/sub-SP002/ses-OCT/micr/sub-SP002_ses-OCT_sample-03_OCT.ome.zarr
  3811. schemaKey: Asset
  3812. schemaVersion: 0.6.9
  3813. wasGeneratedBy:
  3814. - description: Metadata generated by DANDI cli
  3815. endDate: '2025-03-10T12:04:50.859630-04:00'
  3816. id: urn:uuid:c0e00126-a449-47d6-ba3d-d9df14ac05a0
  3817. name: Metadata generation
  3818. schemaKey: Activity
  3819. startDate: '2025-03-10T12:04:50.859630-04:00'
  3820. wasAssociatedWith:
  3821. - identifier: RRID:SCR_019009
  3822. name: DANDI Command Line Interface
  3823. schemaKey: Software
  3824. url: https://github.com/dandi/dandi-cli
  3825. version: 0.67.0
  3826. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  3827. access:
  3828. - schemaKey: AccessRequirements
  3829. status: dandi:OpenAccess
  3830. blobDateModified: '2025-03-06T13:23:06.211716-05:00'
  3831. contentSize: 20254828055
  3832. contentUrl:
  3833. - https://api.dandiarchive.org/api/assets/7f5e5948-eb32-4ccd-a971-44bef87e565d/download/
  3834. - https://dandiarchive.s3.amazonaws.com/zarr/4b5166c6-1980-482d-85ad-376eddf70e5a/
  3835. dateModified: '2025-03-10T12:04:52.996703-04:00'
  3836. digest:
  3837. dandi:dandi-zarr-checksum: 4433c5673508aa964e02cb3d7a7a56d3-30645--20254828055
  3838. encodingFormat: application/x-zarr
  3839. id: dandiasset:7f5e5948-eb32-4ccd-a971-44bef87e565d
  3840. identifier: 7f5e5948-eb32-4ccd-a971-44bef87e565d
  3841. path: rawdata/sub-SP002/ses-OCT/micr/sub-SP002_ses-OCT_sample-02_OCT.ome.zarr
  3842. schemaKey: Asset
  3843. schemaVersion: 0.6.9
  3844. wasGeneratedBy:
  3845. - description: Metadata generated by DANDI cli
  3846. endDate: '2025-03-10T12:04:52.996667-04:00'
  3847. id: urn:uuid:71fd3436-b3e0-43bf-9fd7-70a6a205d52b
  3848. name: Metadata generation
  3849. schemaKey: Activity
  3850. startDate: '2025-03-10T12:04:52.996667-04:00'
  3851. wasAssociatedWith:
  3852. - identifier: RRID:SCR_019009
  3853. name: DANDI Command Line Interface
  3854. schemaKey: Software
  3855. url: https://github.com/dandi/dandi-cli
  3856. version: 0.67.0
  3857. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  3858. access:
  3859. - schemaKey: AccessRequirements
  3860. status: dandi:OpenAccess
  3861. blobDateModified: '2025-03-06T14:11:31.692061-05:00'
  3862. contentSize: 26576179277
  3863. contentUrl:
  3864. - https://api.dandiarchive.org/api/assets/c6568030-2b4d-4214-8789-a32f688174c4/download/
  3865. - https://dandiarchive.s3.amazonaws.com/zarr/6241e713-3f1f-4b00-944c-381fe88980a5/
  3866. dateModified: '2025-03-10T12:04:59.397076-04:00'
  3867. digest:
  3868. dandi:dandi-zarr-checksum: d7f894bb9e134194b1e6c3f40911fa7c-41452--26576179277
  3869. encodingFormat: application/x-zarr
  3870. id: dandiasset:c6568030-2b4d-4214-8789-a32f688174c4
  3871. identifier: c6568030-2b4d-4214-8789-a32f688174c4
  3872. path: rawdata/sub-SP002/ses-OCT/micr/sub-SP002_ses-OCT_sample-04_OCT.ome.zarr
  3873. schemaKey: Asset
  3874. schemaVersion: 0.6.9
  3875. wasGeneratedBy:
  3876. - description: Metadata generated by DANDI cli
  3877. endDate: '2025-03-10T12:04:59.397037-04:00'
  3878. id: urn:uuid:523eeb48-c776-4a38-bd55-c1f67d86476f
  3879. name: Metadata generation
  3880. schemaKey: Activity
  3881. startDate: '2025-03-10T12:04:59.397037-04:00'
  3882. wasAssociatedWith:
  3883. - identifier: RRID:SCR_019009
  3884. name: DANDI Command Line Interface
  3885. schemaKey: Software
  3886. url: https://github.com/dandi/dandi-cli
  3887. version: 0.67.0
Tip!

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

Comments

Loading...