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 127 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
  1. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  2. access:
  3. - schemaKey: AccessRequirements
  4. status: dandi:OpenAccess
  5. blobDateModified: '2025-05-09T14:33:35.419675-04:00'
  6. contentSize: 620
  7. contentUrl:
  8. - https://api.dandiarchive.org/api/assets/b6e7bba7-c7ec-41d9-845b-b78e0d06a5de/download/
  9. - https://dandiarchive.s3.amazonaws.com/blobs/660/538/660538ac-c6ac-4257-8bdc-6da07c9915c5
  10. dateModified: '2025-05-09T14:38:39.391927-04:00'
  11. datePublished: '2025-05-12T16:26:19.790483+00:00'
  12. digest:
  13. dandi:dandi-etag: 648c6ddab7d487d51b31b8a356026740-1
  14. dandi:sha2-256: 68d141b821ed37aeab54c98e17512491d91495e979ebf6485d1a575c5b37449b
  15. encodingFormat: application/octet-stream
  16. id: dandiasset:b6e7bba7-c7ec-41d9-845b-b78e0d06a5de
  17. identifier: b6e7bba7-c7ec-41d9-845b-b78e0d06a5de
  18. path: README
  19. publishedBy:
  20. endDate: '2025-05-12T16:26:19.790483+00:00'
  21. id: urn:uuid:8f8ab623-fbb4-4360-9c7d-3cc7457a5097
  22. name: DANDI publish
  23. schemaKey: PublishActivity
  24. startDate: '2025-05-12T16:26:19.790483+00:00'
  25. wasAssociatedWith:
  26. - id: urn:uuid:c7c83533-d13e-4900-8634-4cc80e7c5d35
  27. identifier: RRID:SCR_017571
  28. name: DANDI API
  29. schemaKey: Software
  30. version: 0.1.0
  31. schemaKey: Asset
  32. schemaVersion: 0.6.9
  33. wasAttributedTo: []
  34. wasGeneratedBy:
  35. - description: Metadata generated by DANDI cli
  36. endDate: '2025-05-09T14:38:38.782463-04:00'
  37. id: urn:uuid:e7d6cda7-2567-4493-9e31-98ae05a86ee5
  38. name: Metadata generation
  39. schemaKey: Activity
  40. startDate: '2025-05-09T14:38:38.782463-04:00'
  41. wasAssociatedWith:
  42. - identifier: RRID:SCR_019009
  43. name: DANDI Command Line Interface
  44. schemaKey: Software
  45. url: https://github.com/dandi/dandi-cli
  46. version: 0.66.7
  47. - description: Metadata generated by DANDI cli
  48. endDate: '2025-05-09T14:38:39.391846-04:00'
  49. id: urn:uuid:d1b4bc7f-402c-4810-ad56-cf1100345e1f
  50. name: Metadata generation
  51. schemaKey: Activity
  52. startDate: '2025-05-09T14:38:39.391846-04:00'
  53. wasAssociatedWith:
  54. - identifier: RRID:SCR_019009
  55. name: DANDI Command Line Interface
  56. schemaKey: Software
  57. url: https://github.com/dandi/dandi-cli
  58. version: 0.66.7
  59. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  60. access:
  61. - schemaKey: AccessRequirements
  62. status: dandi:OpenAccess
  63. blobDateModified: '2022-02-21T15:05:29.480414-05:00'
  64. contentSize: 222
  65. contentUrl:
  66. - https://api.dandiarchive.org/api/assets/bf2d5efc-8de1-4801-abe7-215ada6a6168/download/
  67. - https://dandiarchive.s3.amazonaws.com/blobs/eed/fd4/eedfd45f-2e53-444e-804f-9f06c4b036c7
  68. dateModified: '2025-05-09T14:38:39.337419-04:00'
  69. datePublished: '2025-05-12T16:26:19.800730+00:00'
  70. digest:
  71. dandi:dandi-etag: e4386b82549fb1fb515615bd16342cd4-1
  72. dandi:sha2-256: 8de6a5c1d2fb94fc40290dfdf1bb22c2f1e74f53f08ba58402b7bd0fe57851c9
  73. encodingFormat: application/json
  74. id: dandiasset:bf2d5efc-8de1-4801-abe7-215ada6a6168
  75. identifier: bf2d5efc-8de1-4801-abe7-215ada6a6168
  76. path: derivatives/labels/dataset_description.json
  77. publishedBy:
  78. endDate: '2025-05-12T16:26:19.800730+00:00'
  79. id: urn:uuid:0a505574-ec7a-46bc-9ffc-69028caaf0d6
  80. name: DANDI publish
  81. schemaKey: PublishActivity
  82. startDate: '2025-05-12T16:26:19.800730+00:00'
  83. wasAssociatedWith:
  84. - id: urn:uuid:e295d406-9ec3-4a47-b087-93c10297cdd1
  85. identifier: RRID:SCR_017571
  86. name: DANDI API
  87. schemaKey: Software
  88. version: 0.1.0
  89. schemaKey: Asset
  90. schemaVersion: 0.6.9
  91. wasGeneratedBy:
  92. - description: Metadata generated by DANDI cli
  93. endDate: '2025-05-09T14:38:38.791273-04:00'
  94. id: urn:uuid:16d25dca-4101-470c-9f04-49d2d815baf1
  95. name: Metadata generation
  96. schemaKey: Activity
  97. startDate: '2025-05-09T14:38:38.791273-04:00'
  98. wasAssociatedWith:
  99. - identifier: RRID:SCR_019009
  100. name: DANDI Command Line Interface
  101. schemaKey: Software
  102. url: https://github.com/dandi/dandi-cli
  103. version: 0.66.7
  104. - description: Metadata generated by DANDI cli
  105. endDate: '2025-05-09T14:38:39.337352-04:00'
  106. id: urn:uuid:4cedf734-f4e1-4df5-a237-d3e69337c3d1
  107. name: Metadata generation
  108. schemaKey: Activity
  109. startDate: '2025-05-09T14:38:39.337352-04:00'
  110. wasAssociatedWith:
  111. - identifier: RRID:SCR_019009
  112. name: DANDI Command Line Interface
  113. schemaKey: Software
  114. url: https://github.com/dandi/dandi-cli
  115. version: 0.66.7
  116. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  117. access:
  118. - schemaKey: AccessRequirements
  119. status: dandi:OpenAccess
  120. blobDateModified: '2025-05-09T14:33:15.401451-04:00'
  121. contentSize: 467
  122. contentUrl:
  123. - https://api.dandiarchive.org/api/assets/8849fe43-dfaf-4637-9d6c-3b75ef10ebc8/download/
  124. - https://dandiarchive.s3.amazonaws.com/blobs/87c/beb/87cbebc5-c651-4ea5-89bb-24abcd19ac27
  125. dateModified: '2025-05-09T14:38:39.316020-04:00'
  126. datePublished: '2025-05-12T16:26:19.810845+00:00'
  127. digest:
  128. dandi:dandi-etag: f4a4e01cd42ff3400b8f057fbf37eec6-1
  129. dandi:sha2-256: d922110f9e52cad5a6b75f7626a6cb59c198d6a8cc54a28b1adda0183641b62a
  130. encodingFormat: application/octet-stream
  131. id: dandiasset:8849fe43-dfaf-4637-9d6c-3b75ef10ebc8
  132. identifier: 8849fe43-dfaf-4637-9d6c-3b75ef10ebc8
  133. path: CHANGES
  134. publishedBy:
  135. endDate: '2025-05-12T16:26:19.810845+00:00'
  136. id: urn:uuid:7bb9f532-327b-4943-9b77-649f755e3677
  137. name: DANDI publish
  138. schemaKey: PublishActivity
  139. startDate: '2025-05-12T16:26:19.810845+00:00'
  140. wasAssociatedWith:
  141. - id: urn:uuid:3089df5e-6821-4169-90a7-5092502c5b4c
  142. identifier: RRID:SCR_017571
  143. name: DANDI API
  144. schemaKey: Software
  145. version: 0.1.0
  146. schemaKey: Asset
  147. schemaVersion: 0.6.9
  148. wasAttributedTo: []
  149. wasGeneratedBy:
  150. - description: Metadata generated by DANDI cli
  151. endDate: '2025-05-09T14:38:38.756342-04:00'
  152. id: urn:uuid:c1848ccc-da00-49bb-b56d-c79902942625
  153. name: Metadata generation
  154. schemaKey: Activity
  155. startDate: '2025-05-09T14:38:38.756342-04:00'
  156. wasAssociatedWith:
  157. - identifier: RRID:SCR_019009
  158. name: DANDI Command Line Interface
  159. schemaKey: Software
  160. url: https://github.com/dandi/dandi-cli
  161. version: 0.66.7
  162. - description: Metadata generated by DANDI cli
  163. endDate: '2025-05-09T14:38:39.315936-04:00'
  164. id: urn:uuid:79f5d394-ee9f-455a-aafc-293987620fab
  165. name: Metadata generation
  166. schemaKey: Activity
  167. startDate: '2025-05-09T14:38:39.315936-04:00'
  168. wasAssociatedWith:
  169. - identifier: RRID:SCR_019009
  170. name: DANDI Command Line Interface
  171. schemaKey: Software
  172. url: https://github.com/dandi/dandi-cli
  173. version: 0.66.7
  174. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  175. access:
  176. - schemaKey: AccessRequirements
  177. status: dandi:OpenAccess
  178. blobDateModified: '2022-02-21T15:05:29.479414-05:00'
  179. contentSize: 1065
  180. contentUrl:
  181. - https://api.dandiarchive.org/api/assets/5b8405fa-401c-437a-ac1c-e295af73eef0/download/
  182. - https://dandiarchive.s3.amazonaws.com/blobs/9f1/718/9f17183e-102d-4e56-93f6-8714d23978a9
  183. dateModified: '2025-05-09T14:38:39.379357-04:00'
  184. datePublished: '2025-05-12T16:26:19.819124+00:00'
  185. digest:
  186. dandi:dandi-etag: 2ed93607405c9285bcb7f679b1546895-1
  187. dandi:sha2-256: 8f31334ffb7b2fded9233f707aeeb4dc1ac269b114d9885be5c6a24d2fe22782
  188. encodingFormat: application/octet-stream
  189. id: dandiasset:5b8405fa-401c-437a-ac1c-e295af73eef0
  190. identifier: 5b8405fa-401c-437a-ac1c-e295af73eef0
  191. path: LICENSE
  192. publishedBy:
  193. endDate: '2025-05-12T16:26:19.819124+00:00'
  194. id: urn:uuid:eabd64c7-a512-465e-ac4a-15077bec88c7
  195. name: DANDI publish
  196. schemaKey: PublishActivity
  197. startDate: '2025-05-12T16:26:19.819124+00:00'
  198. wasAssociatedWith:
  199. - id: urn:uuid:a360b397-6603-4b5b-b2be-41871e35a733
  200. identifier: RRID:SCR_017571
  201. name: DANDI API
  202. schemaKey: Software
  203. version: 0.1.0
  204. schemaKey: Asset
  205. schemaVersion: 0.6.9
  206. wasAttributedTo: []
  207. wasGeneratedBy:
  208. - description: Metadata generated by DANDI cli
  209. endDate: '2025-05-09T14:38:38.756810-04:00'
  210. id: urn:uuid:a6976644-a2ee-4ce1-aa23-c8072de11a77
  211. name: Metadata generation
  212. schemaKey: Activity
  213. startDate: '2025-05-09T14:38:38.756810-04:00'
  214. wasAssociatedWith:
  215. - identifier: RRID:SCR_019009
  216. name: DANDI Command Line Interface
  217. schemaKey: Software
  218. url: https://github.com/dandi/dandi-cli
  219. version: 0.66.7
  220. - description: Metadata generated by DANDI cli
  221. endDate: '2025-05-09T14:38:39.379302-04:00'
  222. id: urn:uuid:bbc79326-c9aa-45cc-bbb8-753b8a760362
  223. name: Metadata generation
  224. schemaKey: Activity
  225. startDate: '2025-05-09T14:38:39.379302-04:00'
  226. wasAssociatedWith:
  227. - identifier: RRID:SCR_019009
  228. name: DANDI Command Line Interface
  229. schemaKey: Software
  230. url: https://github.com/dandi/dandi-cli
  231. version: 0.66.7
  232. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  233. access:
  234. - schemaKey: AccessRequirements
  235. status: dandi:OpenAccess
  236. blobDateModified: '2025-04-30T16:37:23.659881-04:00'
  237. contentSize: 74974
  238. contentUrl:
  239. - https://api.dandiarchive.org/api/assets/ee950f4d-7311-475a-a30c-fb20d5ee62bc/download/
  240. - https://dandiarchive.s3.amazonaws.com/blobs/fbf/cdb/fbfcdbbd-9fe8-4f81-845d-6c42e9005a51
  241. dateModified: '2025-05-09T14:38:42.480930-04:00'
  242. datePublished: '2025-05-12T16:26:19.828340+00:00'
  243. digest:
  244. dandi:dandi-etag: e4a1c04382a59a7bd463783970b7d89a-1
  245. dandi:sha2-256: 47e80e6160360d9993df4d75b52efe999ef5a7b842bd56107598dd7168f872fb
  246. encodingFormat: image/png
  247. id: dandiasset:ee950f4d-7311-475a-a30c-fb20d5ee62bc
  248. identifier: ee950f4d-7311-475a-a30c-fb20d5ee62bc
  249. path: derivatives/labels/sub-rat1/micr/sub-rat1_sample-data1_SEM_seg-axon-manual.png
  250. publishedBy:
  251. endDate: '2025-05-12T16:26:19.828340+00:00'
  252. id: urn:uuid:e6c40b9e-3294-445f-9029-f16282f1dafe
  253. name: DANDI publish
  254. schemaKey: PublishActivity
  255. startDate: '2025-05-12T16:26:19.828340+00:00'
  256. wasAssociatedWith:
  257. - id: urn:uuid:f91b7a86-baa2-41e3-b68d-9aa07e3ad61a
  258. identifier: RRID:SCR_017571
  259. name: DANDI API
  260. schemaKey: Software
  261. version: 0.1.0
  262. schemaKey: Asset
  263. schemaVersion: 0.6.9
  264. wasGeneratedBy:
  265. - description: Metadata generated by DANDI cli
  266. endDate: '2025-05-09T14:38:41.585611-04:00'
  267. id: urn:uuid:276c2a5e-5695-4c34-8a46-3b9cd77ff259
  268. name: Metadata generation
  269. schemaKey: Activity
  270. startDate: '2025-05-09T14:38:41.585611-04:00'
  271. wasAssociatedWith:
  272. - identifier: RRID:SCR_019009
  273. name: DANDI Command Line Interface
  274. schemaKey: Software
  275. url: https://github.com/dandi/dandi-cli
  276. version: 0.66.7
  277. - description: Metadata generated by DANDI cli
  278. endDate: '2025-05-09T14:38:42.480817-04:00'
  279. id: urn:uuid:db73069c-a2cb-46d2-a319-22cd70d9ae40
  280. name: Metadata generation
  281. schemaKey: Activity
  282. startDate: '2025-05-09T14:38:42.480817-04: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.66.7
  289. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  290. access:
  291. - schemaKey: AccessRequirements
  292. status: dandi:OpenAccess
  293. blobDateModified: '2025-04-30T08:48:14.434659-04:00'
  294. contentSize: 107054
  295. contentUrl:
  296. - https://api.dandiarchive.org/api/assets/eaf62f07-df43-4fa5-9ca8-a6d015996243/download/
  297. - https://dandiarchive.s3.amazonaws.com/blobs/238/dcc/238dcc04-b739-486e-8e06-ff359adca7b1
  298. dateModified: '2025-05-09T14:38:42.930463-04:00'
  299. datePublished: '2025-05-12T16:26:19.836050+00:00'
  300. digest:
  301. dandi:dandi-etag: 6f98583b87b3d65373e24d683bef637c-1
  302. dandi:sha2-256: c2b7e54d0218d3025df305aab37641729750b2035ddf0d51ce1232e594708417
  303. encodingFormat: image/png
  304. id: dandiasset:eaf62f07-df43-4fa5-9ca8-a6d015996243
  305. identifier: eaf62f07-df43-4fa5-9ca8-a6d015996243
  306. path: derivatives/labels/sub-rat1/micr/sub-rat1_sample-data1_SEM_seg-axonmyelin-manual.png
  307. publishedBy:
  308. endDate: '2025-05-12T16:26:19.836050+00:00'
  309. id: urn:uuid:e94965fd-9446-4063-b2ce-0c957360df72
  310. name: DANDI publish
  311. schemaKey: PublishActivity
  312. startDate: '2025-05-12T16:26:19.836050+00:00'
  313. wasAssociatedWith:
  314. - id: urn:uuid:275d257f-8b40-419d-b00c-a2c18676946c
  315. identifier: RRID:SCR_017571
  316. name: DANDI API
  317. schemaKey: Software
  318. version: 0.1.0
  319. schemaKey: Asset
  320. schemaVersion: 0.6.9
  321. wasGeneratedBy:
  322. - description: Metadata generated by DANDI cli
  323. endDate: '2025-05-09T14:38:41.974938-04:00'
  324. id: urn:uuid:70ddd38d-3df7-423d-8f34-8a54c3a9fd6f
  325. name: Metadata generation
  326. schemaKey: Activity
  327. startDate: '2025-05-09T14:38:41.974938-04:00'
  328. wasAssociatedWith:
  329. - identifier: RRID:SCR_019009
  330. name: DANDI Command Line Interface
  331. schemaKey: Software
  332. url: https://github.com/dandi/dandi-cli
  333. version: 0.66.7
  334. - description: Metadata generated by DANDI cli
  335. endDate: '2025-05-09T14:38:42.930363-04:00'
  336. id: urn:uuid:f90eaed0-1fb6-4d0b-a886-40efa59173d4
  337. name: Metadata generation
  338. schemaKey: Activity
  339. startDate: '2025-05-09T14:38:42.930363-04:00'
  340. wasAssociatedWith:
  341. - identifier: RRID:SCR_019009
  342. name: DANDI Command Line Interface
  343. schemaKey: Software
  344. url: https://github.com/dandi/dandi-cli
  345. version: 0.66.7
  346. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  347. access:
  348. - schemaKey: AccessRequirements
  349. status: dandi:OpenAccess
  350. blobDateModified: '2025-04-30T16:37:23.703882-04:00'
  351. contentSize: 135773
  352. contentUrl:
  353. - https://api.dandiarchive.org/api/assets/223399a4-f4a6-4c4f-8d61-1c185f99b473/download/
  354. - https://dandiarchive.s3.amazonaws.com/blobs/f56/5ba/f565ba38-f515-4052-a45e-431d313e6ad6
  355. dateModified: '2025-05-09T14:38:43.117812-04:00'
  356. datePublished: '2025-05-12T16:26:19.843314+00:00'
  357. digest:
  358. dandi:dandi-etag: d34866bd55d0dd9de9286014fbd54490-1
  359. dandi:sha2-256: 3d363db28b7ce1f200b257e51b6537a3956b0a6ed8836e905a52d9d451831cc1
  360. encodingFormat: image/png
  361. id: dandiasset:223399a4-f4a6-4c4f-8d61-1c185f99b473
  362. identifier: 223399a4-f4a6-4c4f-8d61-1c185f99b473
  363. path: derivatives/labels/sub-rat1/micr/sub-rat1_sample-data1_SEM_seg-myelin-manual.png
  364. publishedBy:
  365. endDate: '2025-05-12T16:26:19.843314+00:00'
  366. id: urn:uuid:56d382e6-91ae-42b9-ba53-5bb785057ca6
  367. name: DANDI publish
  368. schemaKey: PublishActivity
  369. startDate: '2025-05-12T16:26:19.843314+00:00'
  370. wasAssociatedWith:
  371. - id: urn:uuid:64e158c7-0201-439c-87c5-a91f1513806b
  372. identifier: RRID:SCR_017571
  373. name: DANDI API
  374. schemaKey: Software
  375. version: 0.1.0
  376. schemaKey: Asset
  377. schemaVersion: 0.6.9
  378. wasGeneratedBy:
  379. - description: Metadata generated by DANDI cli
  380. endDate: '2025-05-09T14:38:42.072353-04:00'
  381. id: urn:uuid:aad74bb1-31e4-43aa-88b9-47d1751c163c
  382. name: Metadata generation
  383. schemaKey: Activity
  384. startDate: '2025-05-09T14:38:42.072353-04:00'
  385. wasAssociatedWith:
  386. - identifier: RRID:SCR_019009
  387. name: DANDI Command Line Interface
  388. schemaKey: Software
  389. url: https://github.com/dandi/dandi-cli
  390. version: 0.66.7
  391. - description: Metadata generated by DANDI cli
  392. endDate: '2025-05-09T14:38:43.117734-04:00'
  393. id: urn:uuid:1ec641d2-27a0-4c17-b1d5-217564cbe8c9
  394. name: Metadata generation
  395. schemaKey: Activity
  396. startDate: '2025-05-09T14:38:43.117734-04:00'
  397. wasAssociatedWith:
  398. - identifier: RRID:SCR_019009
  399. name: DANDI Command Line Interface
  400. schemaKey: Software
  401. url: https://github.com/dandi/dandi-cli
  402. version: 0.66.7
  403. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  404. access:
  405. - schemaKey: AccessRequirements
  406. status: dandi:OpenAccess
  407. blobDateModified: '2025-04-30T16:39:56.134288-04:00'
  408. contentSize: 22933
  409. contentUrl:
  410. - https://api.dandiarchive.org/api/assets/fd2a9ab3-cac3-42da-afa5-e29863930859/download/
  411. - https://dandiarchive.s3.amazonaws.com/blobs/f0e/29b/f0e29b97-d8b7-4a63-b1ce-633974b11812
  412. dateModified: '2025-05-09T14:38:44.232234-04:00'
  413. datePublished: '2025-05-12T16:26:19.851126+00:00'
  414. digest:
  415. dandi:dandi-etag: 10f8e20224d49f92f00d13d966c675cb-1
  416. dandi:sha2-256: 5fab25ea18bbf3f0778096491190ef5fcd31aa59a5cb4407599de2893748d544
  417. encodingFormat: image/png
  418. id: dandiasset:fd2a9ab3-cac3-42da-afa5-e29863930859
  419. identifier: fd2a9ab3-cac3-42da-afa5-e29863930859
  420. path: derivatives/labels/sub-rat2/micr/sub-rat2_sample-data5_SEM_seg-axon-manual.png
  421. publishedBy:
  422. endDate: '2025-05-12T16:26:19.851126+00:00'
  423. id: urn:uuid:07b45e62-625d-42ac-831b-ad6f583c4235
  424. name: DANDI publish
  425. schemaKey: PublishActivity
  426. startDate: '2025-05-12T16:26:19.851126+00:00'
  427. wasAssociatedWith:
  428. - id: urn:uuid:a0282aa7-596b-4064-8482-f9ace1df5003
  429. identifier: RRID:SCR_017571
  430. name: DANDI API
  431. schemaKey: Software
  432. version: 0.1.0
  433. schemaKey: Asset
  434. schemaVersion: 0.6.9
  435. wasGeneratedBy:
  436. - description: Metadata generated by DANDI cli
  437. endDate: '2025-05-09T14:38:42.878766-04:00'
  438. id: urn:uuid:2174c1a1-edbe-44e0-a0bf-45d0a7d3d199
  439. name: Metadata generation
  440. schemaKey: Activity
  441. startDate: '2025-05-09T14:38:42.878766-04:00'
  442. wasAssociatedWith:
  443. - identifier: RRID:SCR_019009
  444. name: DANDI Command Line Interface
  445. schemaKey: Software
  446. url: https://github.com/dandi/dandi-cli
  447. version: 0.66.7
  448. - description: Metadata generated by DANDI cli
  449. endDate: '2025-05-09T14:38:44.232151-04:00'
  450. id: urn:uuid:eb30b477-9e3b-48ab-9a4a-16df12a224ac
  451. name: Metadata generation
  452. schemaKey: Activity
  453. startDate: '2025-05-09T14:38:44.232151-04:00'
  454. wasAssociatedWith:
  455. - identifier: RRID:SCR_019009
  456. name: DANDI Command Line Interface
  457. schemaKey: Software
  458. url: https://github.com/dandi/dandi-cli
  459. version: 0.66.7
  460. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  461. access:
  462. - schemaKey: AccessRequirements
  463. status: dandi:OpenAccess
  464. blobDateModified: '2022-02-21T15:05:29.482414-05:00'
  465. contentSize: 51098
  466. contentUrl:
  467. - https://api.dandiarchive.org/api/assets/9c4cc60f-d61a-410d-8677-f63c3b993e00/download/
  468. - https://dandiarchive.s3.amazonaws.com/blobs/190/490/190490d7-3ba1-4e21-ab52-66e74e372820
  469. dateModified: '2025-05-09T14:38:44.678023-04:00'
  470. datePublished: '2025-05-12T16:26:19.858936+00:00'
  471. digest:
  472. dandi:dandi-etag: ed258aba76e90082db43a2f24484781c-1
  473. dandi:sha2-256: 8563bf77d1a9dafffbdad8a524bb5e2dcdf93e7ecbade0f2698667de8ca3523f
  474. encodingFormat: image/png
  475. id: dandiasset:9c4cc60f-d61a-410d-8677-f63c3b993e00
  476. identifier: 9c4cc60f-d61a-410d-8677-f63c3b993e00
  477. path: derivatives/labels/sub-rat2/micr/sub-rat2_sample-data5_SEM_seg-axonmyelin-manual.png
  478. publishedBy:
  479. endDate: '2025-05-12T16:26:19.858936+00:00'
  480. id: urn:uuid:d5d55b71-3bca-47b2-87e8-b8cd7624ee07
  481. name: DANDI publish
  482. schemaKey: PublishActivity
  483. startDate: '2025-05-12T16:26:19.858936+00:00'
  484. wasAssociatedWith:
  485. - id: urn:uuid:944440db-bbc7-4a7a-ad8d-e747d07828b3
  486. identifier: RRID:SCR_017571
  487. name: DANDI API
  488. schemaKey: Software
  489. version: 0.1.0
  490. schemaKey: Asset
  491. schemaVersion: 0.6.9
  492. wasGeneratedBy:
  493. - description: Metadata generated by DANDI cli
  494. endDate: '2025-05-09T14:38:43.653543-04:00'
  495. id: urn:uuid:88fd35aa-c471-465b-8298-ceb2277711cd
  496. name: Metadata generation
  497. schemaKey: Activity
  498. startDate: '2025-05-09T14:38:43.653543-04:00'
  499. wasAssociatedWith:
  500. - identifier: RRID:SCR_019009
  501. name: DANDI Command Line Interface
  502. schemaKey: Software
  503. url: https://github.com/dandi/dandi-cli
  504. version: 0.66.7
  505. - description: Metadata generated by DANDI cli
  506. endDate: '2025-05-09T14:38:44.677930-04:00'
  507. id: urn:uuid:bf366c21-5211-4429-afbb-cf7ebee0475a
  508. name: Metadata generation
  509. schemaKey: Activity
  510. startDate: '2025-05-09T14:38:44.677930-04:00'
  511. wasAssociatedWith:
  512. - identifier: RRID:SCR_019009
  513. name: DANDI Command Line Interface
  514. schemaKey: Software
  515. url: https://github.com/dandi/dandi-cli
  516. version: 0.66.7
  517. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  518. access:
  519. - schemaKey: AccessRequirements
  520. status: dandi:OpenAccess
  521. blobDateModified: '2022-02-21T15:05:29.482414-05:00'
  522. contentSize: 50286
  523. contentUrl:
  524. - https://api.dandiarchive.org/api/assets/2baec682-7343-4fe3-a943-939a77424950/download/
  525. - https://dandiarchive.s3.amazonaws.com/blobs/bf0/e84/bf0e848f-ecdb-415f-bbb3-05eeade48678
  526. dateModified: '2025-05-09T14:38:45.811669-04:00'
  527. datePublished: '2025-05-12T16:26:19.867093+00:00'
  528. digest:
  529. dandi:dandi-etag: 8c8eff23e47a40eb50423621bf0db9d6-1
  530. dandi:sha2-256: 89a5d96c714ac31332dc9c2371f42ca0508e0f9fb17195d6add596b7466fd701
  531. encodingFormat: image/png
  532. id: dandiasset:2baec682-7343-4fe3-a943-939a77424950
  533. identifier: 2baec682-7343-4fe3-a943-939a77424950
  534. path: derivatives/labels/sub-rat2/micr/sub-rat2_sample-data5_SEM_seg-myelin-manual.png
  535. publishedBy:
  536. endDate: '2025-05-12T16:26:19.867093+00:00'
  537. id: urn:uuid:cfe1651e-202f-4012-9a48-2208bfff3f89
  538. name: DANDI publish
  539. schemaKey: PublishActivity
  540. startDate: '2025-05-12T16:26:19.867093+00:00'
  541. wasAssociatedWith:
  542. - id: urn:uuid:ef91bdfa-57f1-4bb0-8910-e5889b3424e8
  543. identifier: RRID:SCR_017571
  544. name: DANDI API
  545. schemaKey: Software
  546. version: 0.1.0
  547. schemaKey: Asset
  548. schemaVersion: 0.6.9
  549. wasGeneratedBy:
  550. - description: Metadata generated by DANDI cli
  551. endDate: '2025-05-09T14:38:45.205012-04:00'
  552. id: urn:uuid:452969cc-f2a5-47e8-b262-c8edaca701a7
  553. name: Metadata generation
  554. schemaKey: Activity
  555. startDate: '2025-05-09T14:38:45.205012-04:00'
  556. wasAssociatedWith:
  557. - identifier: RRID:SCR_019009
  558. name: DANDI Command Line Interface
  559. schemaKey: Software
  560. url: https://github.com/dandi/dandi-cli
  561. version: 0.66.7
  562. - description: Metadata generated by DANDI cli
  563. endDate: '2025-05-09T14:38:45.811609-04:00'
  564. id: urn:uuid:3844a412-2ee8-40b8-9009-f442a17761b0
  565. name: Metadata generation
  566. schemaKey: Activity
  567. startDate: '2025-05-09T14:38:45.811609-04:00'
  568. wasAssociatedWith:
  569. - identifier: RRID:SCR_019009
  570. name: DANDI Command Line Interface
  571. schemaKey: Software
  572. url: https://github.com/dandi/dandi-cli
  573. version: 0.66.7
  574. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  575. access:
  576. - schemaKey: AccessRequirements
  577. status: dandi:OpenAccess
  578. blobDateModified: '2025-04-30T16:37:22.903879-04:00'
  579. contentSize: 29321
  580. contentUrl:
  581. - https://api.dandiarchive.org/api/assets/328fd7e1-e6aa-4f7b-9b7c-6523cee3d4fa/download/
  582. - https://dandiarchive.s3.amazonaws.com/blobs/527/720/5277201c-8de8-4ef0-9505-3b51d81948bc
  583. dateModified: '2025-05-09T14:38:47.246276-04:00'
  584. datePublished: '2025-05-12T16:26:19.877115+00:00'
  585. digest:
  586. dandi:dandi-etag: 6d05ea05d3bd1e67fb7fcecc416a38ea-1
  587. dandi:sha2-256: 4f2a510d525bac98779c6eb5ad4dfb6e1bde382c779a9e0e5a9dd9fdc19c9662
  588. encodingFormat: image/png
  589. id: dandiasset:328fd7e1-e6aa-4f7b-9b7c-6523cee3d4fa
  590. identifier: 328fd7e1-e6aa-4f7b-9b7c-6523cee3d4fa
  591. path: derivatives/labels/sub-rat3/micr/sub-rat3_sample-data10_SEM_seg-axon-manual.png
  592. publishedBy:
  593. endDate: '2025-05-12T16:26:19.877115+00:00'
  594. id: urn:uuid:39d88ed9-74b7-426f-b3c0-815de387d20f
  595. name: DANDI publish
  596. schemaKey: PublishActivity
  597. startDate: '2025-05-12T16:26:19.877115+00:00'
  598. wasAssociatedWith:
  599. - id: urn:uuid:7807f8b1-14de-4079-9a4e-3da156af200f
  600. identifier: RRID:SCR_017571
  601. name: DANDI API
  602. schemaKey: Software
  603. version: 0.1.0
  604. schemaKey: Asset
  605. schemaVersion: 0.6.9
  606. wasGeneratedBy:
  607. - description: Metadata generated by DANDI cli
  608. endDate: '2025-05-09T14:38:46.147852-04:00'
  609. id: urn:uuid:f52d171c-a532-4876-8c9e-197162d46d22
  610. name: Metadata generation
  611. schemaKey: Activity
  612. startDate: '2025-05-09T14:38:46.147852-04:00'
  613. wasAssociatedWith:
  614. - identifier: RRID:SCR_019009
  615. name: DANDI Command Line Interface
  616. schemaKey: Software
  617. url: https://github.com/dandi/dandi-cli
  618. version: 0.66.7
  619. - description: Metadata generated by DANDI cli
  620. endDate: '2025-05-09T14:38:47.246195-04:00'
  621. id: urn:uuid:081e6d7f-2ef3-410e-bef3-d50703431344
  622. name: Metadata generation
  623. schemaKey: Activity
  624. startDate: '2025-05-09T14:38:47.246195-04:00'
  625. wasAssociatedWith:
  626. - identifier: RRID:SCR_019009
  627. name: DANDI Command Line Interface
  628. schemaKey: Software
  629. url: https://github.com/dandi/dandi-cli
  630. version: 0.66.7
  631. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  632. access:
  633. - schemaKey: AccessRequirements
  634. status: dandi:OpenAccess
  635. blobDateModified: '2025-04-30T16:33:07.058215-04:00'
  636. contentSize: 61600
  637. contentUrl:
  638. - https://api.dandiarchive.org/api/assets/1c4a715b-8cee-4fb2-95a3-ee4497be6257/download/
  639. - https://dandiarchive.s3.amazonaws.com/blobs/e79/040/e7904021-001f-4b04-bb4e-4926a2a45ca9
  640. dateModified: '2025-05-09T14:38:47.915228-04:00'
  641. datePublished: '2025-05-12T16:26:19.884372+00:00'
  642. digest:
  643. dandi:dandi-etag: 9f9c60c45de6198cbf330c94731a377d-1
  644. dandi:sha2-256: 3cda00940008e65ed8c5f268213dd27c603dd0858cb99e53a2c2127031fad38d
  645. encodingFormat: image/png
  646. id: dandiasset:1c4a715b-8cee-4fb2-95a3-ee4497be6257
  647. identifier: 1c4a715b-8cee-4fb2-95a3-ee4497be6257
  648. path: derivatives/labels/sub-rat3/micr/sub-rat3_sample-data10_SEM_seg-axonmyelin-manual.png
  649. publishedBy:
  650. endDate: '2025-05-12T16:26:19.884372+00:00'
  651. id: urn:uuid:4ca965aa-ae04-418c-b696-dd1773bee9e3
  652. name: DANDI publish
  653. schemaKey: PublishActivity
  654. startDate: '2025-05-12T16:26:19.884372+00:00'
  655. wasAssociatedWith:
  656. - id: urn:uuid:c2cd89ff-00da-49b1-8ecf-443decd6ec75
  657. identifier: RRID:SCR_017571
  658. name: DANDI API
  659. schemaKey: Software
  660. version: 0.1.0
  661. schemaKey: Asset
  662. schemaVersion: 0.6.9
  663. wasGeneratedBy:
  664. - description: Metadata generated by DANDI cli
  665. endDate: '2025-05-09T14:38:46.731879-04:00'
  666. id: urn:uuid:2c4b5ba8-5442-4fe5-b76f-2639626b1afa
  667. name: Metadata generation
  668. schemaKey: Activity
  669. startDate: '2025-05-09T14:38:46.731879-04:00'
  670. wasAssociatedWith:
  671. - identifier: RRID:SCR_019009
  672. name: DANDI Command Line Interface
  673. schemaKey: Software
  674. url: https://github.com/dandi/dandi-cli
  675. version: 0.66.7
  676. - description: Metadata generated by DANDI cli
  677. endDate: '2025-05-09T14:38:47.915139-04:00'
  678. id: urn:uuid:f21f046c-c605-4515-9fca-ecec2310b4c0
  679. name: Metadata generation
  680. schemaKey: Activity
  681. startDate: '2025-05-09T14:38:47.915139-04:00'
  682. wasAssociatedWith:
  683. - identifier: RRID:SCR_019009
  684. name: DANDI Command Line Interface
  685. schemaKey: Software
  686. url: https://github.com/dandi/dandi-cli
  687. version: 0.66.7
  688. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  689. access:
  690. - schemaKey: AccessRequirements
  691. status: dandi:OpenAccess
  692. blobDateModified: '2025-04-30T16:37:22.916879-04:00'
  693. contentSize: 57382
  694. contentUrl:
  695. - https://api.dandiarchive.org/api/assets/d87308e0-a584-47ab-86f0-273ea76826f0/download/
  696. - https://dandiarchive.s3.amazonaws.com/blobs/ba3/ff6/ba3ff69c-3454-4021-8952-3b6e6d77d0ef
  697. dateModified: '2025-05-09T14:38:47.872971-04:00'
  698. datePublished: '2025-05-12T16:26:19.891092+00:00'
  699. digest:
  700. dandi:dandi-etag: dc591853280152db2dfc36974ddd1c2d-1
  701. dandi:sha2-256: 4deb82ac086bf8d760dd93aaece770b5d7607c61cdf11fca29a3c04a578093b4
  702. encodingFormat: image/png
  703. id: dandiasset:d87308e0-a584-47ab-86f0-273ea76826f0
  704. identifier: d87308e0-a584-47ab-86f0-273ea76826f0
  705. path: derivatives/labels/sub-rat3/micr/sub-rat3_sample-data10_SEM_seg-myelin-manual.png
  706. publishedBy:
  707. endDate: '2025-05-12T16:26:19.891092+00:00'
  708. id: urn:uuid:17df0543-1670-48ea-ae3c-c8a6ceb4ad56
  709. name: DANDI publish
  710. schemaKey: PublishActivity
  711. startDate: '2025-05-12T16:26:19.891092+00:00'
  712. wasAssociatedWith:
  713. - id: urn:uuid:1eba776f-dc19-455c-9ab1-8b3affde404a
  714. identifier: RRID:SCR_017571
  715. name: DANDI API
  716. schemaKey: Software
  717. version: 0.1.0
  718. schemaKey: Asset
  719. schemaVersion: 0.6.9
  720. wasGeneratedBy:
  721. - description: Metadata generated by DANDI cli
  722. endDate: '2025-05-09T14:38:46.855749-04:00'
  723. id: urn:uuid:4d0e7884-b969-4337-81e3-3e6f1d31ac08
  724. name: Metadata generation
  725. schemaKey: Activity
  726. startDate: '2025-05-09T14:38:46.855749-04:00'
  727. wasAssociatedWith:
  728. - identifier: RRID:SCR_019009
  729. name: DANDI Command Line Interface
  730. schemaKey: Software
  731. url: https://github.com/dandi/dandi-cli
  732. version: 0.66.7
  733. - description: Metadata generated by DANDI cli
  734. endDate: '2025-05-09T14:38:47.872862-04:00'
  735. id: urn:uuid:544629f4-4b5d-4252-82dc-204a65127d25
  736. name: Metadata generation
  737. schemaKey: Activity
  738. startDate: '2025-05-09T14:38:47.872862-04:00'
  739. wasAssociatedWith:
  740. - identifier: RRID:SCR_019009
  741. name: DANDI Command Line Interface
  742. schemaKey: Software
  743. url: https://github.com/dandi/dandi-cli
  744. version: 0.66.7
  745. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  746. access:
  747. - schemaKey: AccessRequirements
  748. status: dandi:OpenAccess
  749. blobDateModified: '2025-04-30T16:37:23.510881-04:00'
  750. contentSize: 33093
  751. contentUrl:
  752. - https://api.dandiarchive.org/api/assets/b959c332-d414-42ba-8c5e-6aea17cc015d/download/
  753. - https://dandiarchive.s3.amazonaws.com/blobs/3a8/444/3a84444e-8727-47f6-9dda-2d363509a345
  754. dateModified: '2025-05-09T14:38:48.089104-04:00'
  755. datePublished: '2025-05-12T16:26:19.899331+00:00'
  756. digest:
  757. dandi:dandi-etag: e891bb25353c70eb287b884ccfc4810f-1
  758. dandi:sha2-256: 882c6d8ddb414ba60aa4d82a29ab0263302520b345b874292d2f59be8a308d95
  759. encodingFormat: image/png
  760. id: dandiasset:b959c332-d414-42ba-8c5e-6aea17cc015d
  761. identifier: b959c332-d414-42ba-8c5e-6aea17cc015d
  762. path: derivatives/labels/sub-rat3/micr/sub-rat3_sample-data11_SEM_seg-axon-manual.png
  763. publishedBy:
  764. endDate: '2025-05-12T16:26:19.899331+00:00'
  765. id: urn:uuid:2167f264-c858-42e9-8bf0-4080e2335bd9
  766. name: DANDI publish
  767. schemaKey: PublishActivity
  768. startDate: '2025-05-12T16:26:19.899331+00:00'
  769. wasAssociatedWith:
  770. - id: urn:uuid:eaf44359-cc1d-453c-87da-20eb16364840
  771. identifier: RRID:SCR_017571
  772. name: DANDI API
  773. schemaKey: Software
  774. version: 0.1.0
  775. schemaKey: Asset
  776. schemaVersion: 0.6.9
  777. wasGeneratedBy:
  778. - description: Metadata generated by DANDI cli
  779. endDate: '2025-05-09T14:38:47.348364-04:00'
  780. id: urn:uuid:89dcd0af-a87c-4fcd-b764-2c908a47a4ad
  781. name: Metadata generation
  782. schemaKey: Activity
  783. startDate: '2025-05-09T14:38:47.348364-04:00'
  784. wasAssociatedWith:
  785. - identifier: RRID:SCR_019009
  786. name: DANDI Command Line Interface
  787. schemaKey: Software
  788. url: https://github.com/dandi/dandi-cli
  789. version: 0.66.7
  790. - description: Metadata generated by DANDI cli
  791. endDate: '2025-05-09T14:38:48.089010-04:00'
  792. id: urn:uuid:dc61c95d-177c-4e18-913e-437bac0e736c
  793. name: Metadata generation
  794. schemaKey: Activity
  795. startDate: '2025-05-09T14:38:48.089010-04:00'
  796. wasAssociatedWith:
  797. - identifier: RRID:SCR_019009
  798. name: DANDI Command Line Interface
  799. schemaKey: Software
  800. url: https://github.com/dandi/dandi-cli
  801. version: 0.66.7
  802. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  803. access:
  804. - schemaKey: AccessRequirements
  805. status: dandi:OpenAccess
  806. blobDateModified: '2025-04-30T09:26:08.202486-04:00'
  807. contentSize: 53125
  808. contentUrl:
  809. - https://api.dandiarchive.org/api/assets/df49c777-9ae6-497f-87f1-59c0a1ecaafa/download/
  810. - https://dandiarchive.s3.amazonaws.com/blobs/5ef/9e1/5ef9e19e-5e73-4eb9-8173-e8a382f5c931
  811. dateModified: '2025-05-09T14:38:48.898288-04:00'
  812. datePublished: '2025-05-12T16:26:19.906861+00:00'
  813. digest:
  814. dandi:dandi-etag: 1f8944bb4a1c775c3f6fe46e3768ede0-1
  815. dandi:sha2-256: 14c233184d55dfba8019cd3ca26c3615d164e6fc3cb196627392c9b5ae79e39a
  816. encodingFormat: image/png
  817. id: dandiasset:df49c777-9ae6-497f-87f1-59c0a1ecaafa
  818. identifier: df49c777-9ae6-497f-87f1-59c0a1ecaafa
  819. path: derivatives/labels/sub-rat3/micr/sub-rat3_sample-data11_SEM_seg-axonmyelin-manual.png
  820. publishedBy:
  821. endDate: '2025-05-12T16:26:19.906861+00:00'
  822. id: urn:uuid:c35585f8-b65e-4678-876d-8f431a0c06d2
  823. name: DANDI publish
  824. schemaKey: PublishActivity
  825. startDate: '2025-05-12T16:26:19.906861+00:00'
  826. wasAssociatedWith:
  827. - id: urn:uuid:9c29ccaa-b5fa-4d2b-b2bf-39fd4820f610
  828. identifier: RRID:SCR_017571
  829. name: DANDI API
  830. schemaKey: Software
  831. version: 0.1.0
  832. schemaKey: Asset
  833. schemaVersion: 0.6.9
  834. wasGeneratedBy:
  835. - description: Metadata generated by DANDI cli
  836. endDate: '2025-05-09T14:38:48.548626-04:00'
  837. id: urn:uuid:c08d9541-041f-4507-956c-465569f42fb7
  838. name: Metadata generation
  839. schemaKey: Activity
  840. startDate: '2025-05-09T14:38:48.548626-04:00'
  841. wasAssociatedWith:
  842. - identifier: RRID:SCR_019009
  843. name: DANDI Command Line Interface
  844. schemaKey: Software
  845. url: https://github.com/dandi/dandi-cli
  846. version: 0.66.7
  847. - description: Metadata generated by DANDI cli
  848. endDate: '2025-05-09T14:38:48.898221-04:00'
  849. id: urn:uuid:0a1be134-0509-4a5e-92bf-cf6fc5c47b54
  850. name: Metadata generation
  851. schemaKey: Activity
  852. startDate: '2025-05-09T14:38:48.898221-04:00'
  853. wasAssociatedWith:
  854. - identifier: RRID:SCR_019009
  855. name: DANDI Command Line Interface
  856. schemaKey: Software
  857. url: https://github.com/dandi/dandi-cli
  858. version: 0.66.7
  859. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  860. access:
  861. - schemaKey: AccessRequirements
  862. status: dandi:OpenAccess
  863. blobDateModified: '2025-04-30T16:37:23.534881-04:00'
  864. contentSize: 64614
  865. contentUrl:
  866. - https://api.dandiarchive.org/api/assets/38001317-9073-424e-a3b5-027232e8ab4e/download/
  867. - https://dandiarchive.s3.amazonaws.com/blobs/c42/2cf/c422cfdd-a027-47ab-8d5f-3708d8a3ea99
  868. dateModified: '2025-05-09T14:38:50.243771-04:00'
  869. datePublished: '2025-05-12T16:26:19.914774+00:00'
  870. digest:
  871. dandi:dandi-etag: 9c02ea6fe0621ca3670e6b65f4d7e260-1
  872. dandi:sha2-256: e778400dda08b7937d378cc2043cfaef80776f7ff112f991fff32ffdad6a2248
  873. encodingFormat: image/png
  874. id: dandiasset:38001317-9073-424e-a3b5-027232e8ab4e
  875. identifier: 38001317-9073-424e-a3b5-027232e8ab4e
  876. path: derivatives/labels/sub-rat3/micr/sub-rat3_sample-data11_SEM_seg-myelin-manual.png
  877. publishedBy:
  878. endDate: '2025-05-12T16:26:19.914774+00:00'
  879. id: urn:uuid:5b829553-7318-4ee9-95a9-8b9e43e11c50
  880. name: DANDI publish
  881. schemaKey: PublishActivity
  882. startDate: '2025-05-12T16:26:19.914774+00:00'
  883. wasAssociatedWith:
  884. - id: urn:uuid:67809e19-f16f-4e89-bc4b-0e3923319f12
  885. identifier: RRID:SCR_017571
  886. name: DANDI API
  887. schemaKey: Software
  888. version: 0.1.0
  889. schemaKey: Asset
  890. schemaVersion: 0.6.9
  891. wasGeneratedBy:
  892. - description: Metadata generated by DANDI cli
  893. endDate: '2025-05-09T14:38:49.627729-04:00'
  894. id: urn:uuid:596e1f69-4615-46be-9380-170f1ab98f13
  895. name: Metadata generation
  896. schemaKey: Activity
  897. startDate: '2025-05-09T14:38:49.627729-04:00'
  898. wasAssociatedWith:
  899. - identifier: RRID:SCR_019009
  900. name: DANDI Command Line Interface
  901. schemaKey: Software
  902. url: https://github.com/dandi/dandi-cli
  903. version: 0.66.7
  904. - description: Metadata generated by DANDI cli
  905. endDate: '2025-05-09T14:38:50.243691-04:00'
  906. id: urn:uuid:d870c9aa-6283-4323-acb8-12df54037e8d
  907. name: Metadata generation
  908. schemaKey: Activity
  909. startDate: '2025-05-09T14:38:50.243691-04:00'
  910. wasAssociatedWith:
  911. - identifier: RRID:SCR_019009
  912. name: DANDI Command Line Interface
  913. schemaKey: Software
  914. url: https://github.com/dandi/dandi-cli
  915. version: 0.66.7
  916. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  917. access:
  918. - schemaKey: AccessRequirements
  919. status: dandi:OpenAccess
  920. blobDateModified: '2025-04-30T16:37:22.847879-04:00'
  921. contentSize: 29364
  922. contentUrl:
  923. - https://api.dandiarchive.org/api/assets/c61180c6-8225-4caf-b932-f1aba2e1e642/download/
  924. - https://dandiarchive.s3.amazonaws.com/blobs/ca0/a88/ca0a88ef-4a73-4a42-8b24-0046cb7b357f
  925. dateModified: '2025-05-09T14:38:51.719299-04:00'
  926. datePublished: '2025-05-12T16:26:19.924070+00:00'
  927. digest:
  928. dandi:dandi-etag: 4e6b0c76636f05f414e6af435e268f98-1
  929. dandi:sha2-256: 87e213d68a987abdee09690c9b706329cc10d5c5eea7b17d3ef6c8324967a997
  930. encodingFormat: image/png
  931. id: dandiasset:c61180c6-8225-4caf-b932-f1aba2e1e642
  932. identifier: c61180c6-8225-4caf-b932-f1aba2e1e642
  933. path: derivatives/labels/sub-rat3/micr/sub-rat3_sample-data9_SEM_seg-axon-manual.png
  934. publishedBy:
  935. endDate: '2025-05-12T16:26:19.924070+00:00'
  936. id: urn:uuid:94ab8fb9-717e-4c2d-8905-b853f4394507
  937. name: DANDI publish
  938. schemaKey: PublishActivity
  939. startDate: '2025-05-12T16:26:19.924070+00:00'
  940. wasAssociatedWith:
  941. - id: urn:uuid:ce6f498d-c588-4fda-8228-ef81625741af
  942. identifier: RRID:SCR_017571
  943. name: DANDI API
  944. schemaKey: Software
  945. version: 0.1.0
  946. schemaKey: Asset
  947. schemaVersion: 0.6.9
  948. wasGeneratedBy:
  949. - description: Metadata generated by DANDI cli
  950. endDate: '2025-05-09T14:38:50.505397-04:00'
  951. id: urn:uuid:7c3b7159-093e-4ba2-a858-bb4391314e1d
  952. name: Metadata generation
  953. schemaKey: Activity
  954. startDate: '2025-05-09T14:38:50.505397-04:00'
  955. wasAssociatedWith:
  956. - identifier: RRID:SCR_019009
  957. name: DANDI Command Line Interface
  958. schemaKey: Software
  959. url: https://github.com/dandi/dandi-cli
  960. version: 0.66.7
  961. - description: Metadata generated by DANDI cli
  962. endDate: '2025-05-09T14:38:51.719225-04:00'
  963. id: urn:uuid:24098474-44cd-483f-8b86-2f14f920685f
  964. name: Metadata generation
  965. schemaKey: Activity
  966. startDate: '2025-05-09T14:38:51.719225-04:00'
  967. wasAssociatedWith:
  968. - identifier: RRID:SCR_019009
  969. name: DANDI Command Line Interface
  970. schemaKey: Software
  971. url: https://github.com/dandi/dandi-cli
  972. version: 0.66.7
  973. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  974. access:
  975. - schemaKey: AccessRequirements
  976. status: dandi:OpenAccess
  977. blobDateModified: '2025-04-30T09:08:40.329560-04:00'
  978. contentSize: 48383
  979. contentUrl:
  980. - https://api.dandiarchive.org/api/assets/e88cd78c-9ab8-40b7-929d-7d9c18f2b60c/download/
  981. - https://dandiarchive.s3.amazonaws.com/blobs/741/57f/74157f9e-766f-4e16-be95-bf41bf4383c5
  982. dateModified: '2025-05-09T14:38:52.212853-04:00'
  983. datePublished: '2025-05-12T16:26:19.932138+00:00'
  984. digest:
  985. dandi:dandi-etag: 1ec8acebcb8bae25260173db4af14350-1
  986. dandi:sha2-256: c94dfba0a688ca89c7ec92a512e6974051b77a33dcb997a9b1597f0795d687aa
  987. encodingFormat: image/png
  988. id: dandiasset:e88cd78c-9ab8-40b7-929d-7d9c18f2b60c
  989. identifier: e88cd78c-9ab8-40b7-929d-7d9c18f2b60c
  990. path: derivatives/labels/sub-rat3/micr/sub-rat3_sample-data9_SEM_seg-axonmyelin-manual.png
  991. publishedBy:
  992. endDate: '2025-05-12T16:26:19.932138+00:00'
  993. id: urn:uuid:e780ed56-8d26-4f47-8cf8-375910fec568
  994. name: DANDI publish
  995. schemaKey: PublishActivity
  996. startDate: '2025-05-12T16:26:19.932138+00:00'
  997. wasAssociatedWith:
  998. - id: urn:uuid:c42b6ca9-ad17-4868-83cc-8a4f8bc9707d
  999. identifier: RRID:SCR_017571
  1000. name: DANDI API
  1001. schemaKey: Software
  1002. version: 0.1.0
  1003. schemaKey: Asset
  1004. schemaVersion: 0.6.9
  1005. wasGeneratedBy:
  1006. - description: Metadata generated by DANDI cli
  1007. endDate: '2025-05-09T14:38:50.747316-04:00'
  1008. id: urn:uuid:4a78ed68-9fbc-41f9-8fff-8a2f87092fd7
  1009. name: Metadata generation
  1010. schemaKey: Activity
  1011. startDate: '2025-05-09T14:38:50.747316-04:00'
  1012. wasAssociatedWith:
  1013. - identifier: RRID:SCR_019009
  1014. name: DANDI Command Line Interface
  1015. schemaKey: Software
  1016. url: https://github.com/dandi/dandi-cli
  1017. version: 0.66.7
  1018. - description: Metadata generated by DANDI cli
  1019. endDate: '2025-05-09T14:38:52.212777-04:00'
  1020. id: urn:uuid:063cde1c-b541-4aaf-a561-f15cd4dcbe0f
  1021. name: Metadata generation
  1022. schemaKey: Activity
  1023. startDate: '2025-05-09T14:38:52.212777-04:00'
  1024. wasAssociatedWith:
  1025. - identifier: RRID:SCR_019009
  1026. name: DANDI Command Line Interface
  1027. schemaKey: Software
  1028. url: https://github.com/dandi/dandi-cli
  1029. version: 0.66.7
  1030. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  1031. access:
  1032. - schemaKey: AccessRequirements
  1033. status: dandi:OpenAccess
  1034. blobDateModified: '2022-02-21T15:05:29.484414-05:00'
  1035. contentSize: 20358
  1036. contentUrl:
  1037. - https://api.dandiarchive.org/api/assets/92eedbd2-dc7c-4e51-ac15-84f092455a7c/download/
  1038. - https://dandiarchive.s3.amazonaws.com/blobs/253/90e/25390eb0-481a-488d-8727-a95d93a671cc
  1039. dateModified: '2025-05-09T14:38:52.859623-04:00'
  1040. datePublished: '2025-05-12T16:26:19.943146+00:00'
  1041. digest:
  1042. dandi:dandi-etag: 20575b91656f22d41cffd34e12566007-1
  1043. dandi:sha2-256: db5e071465cae73be7fa9644242d802df560c0f63c8ebfb2cd3d3759333f5b3f
  1044. encodingFormat: image/png
  1045. id: dandiasset:92eedbd2-dc7c-4e51-ac15-84f092455a7c
  1046. identifier: 92eedbd2-dc7c-4e51-ac15-84f092455a7c
  1047. path: derivatives/labels/sub-rat4/micr/sub-rat4_sample-data12_SEM_seg-axon-manual.png
  1048. publishedBy:
  1049. endDate: '2025-05-12T16:26:19.943146+00:00'
  1050. id: urn:uuid:120a24f3-64de-4c87-93e6-d37efe5a26ea
  1051. name: DANDI publish
  1052. schemaKey: PublishActivity
  1053. startDate: '2025-05-12T16:26:19.943146+00:00'
  1054. wasAssociatedWith:
  1055. - id: urn:uuid:0f28c478-8fc5-40f1-a0e1-8502342d5515
  1056. identifier: RRID:SCR_017571
  1057. name: DANDI API
  1058. schemaKey: Software
  1059. version: 0.1.0
  1060. schemaKey: Asset
  1061. schemaVersion: 0.6.9
  1062. wasGeneratedBy:
  1063. - description: Metadata generated by DANDI cli
  1064. endDate: '2025-05-09T14:38:51.784732-04:00'
  1065. id: urn:uuid:2b7b0fee-5d0c-4862-a80e-039a4fed3112
  1066. name: Metadata generation
  1067. schemaKey: Activity
  1068. startDate: '2025-05-09T14:38:51.784732-04:00'
  1069. wasAssociatedWith:
  1070. - identifier: RRID:SCR_019009
  1071. name: DANDI Command Line Interface
  1072. schemaKey: Software
  1073. url: https://github.com/dandi/dandi-cli
  1074. version: 0.66.7
  1075. - description: Metadata generated by DANDI cli
  1076. endDate: '2025-05-09T14:38:52.859542-04:00'
  1077. id: urn:uuid:fec17b7e-452a-4346-adfb-c1031bb49a64
  1078. name: Metadata generation
  1079. schemaKey: Activity
  1080. startDate: '2025-05-09T14:38:52.859542-04:00'
  1081. wasAssociatedWith:
  1082. - identifier: RRID:SCR_019009
  1083. name: DANDI Command Line Interface
  1084. schemaKey: Software
  1085. url: https://github.com/dandi/dandi-cli
  1086. version: 0.66.7
  1087. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  1088. access:
  1089. - schemaKey: AccessRequirements
  1090. status: dandi:OpenAccess
  1091. blobDateModified: '2025-04-30T16:37:22.859879-04:00'
  1092. contentSize: 56237
  1093. contentUrl:
  1094. - https://api.dandiarchive.org/api/assets/8b51afd3-756b-437b-9a50-584ec49e9814/download/
  1095. - https://dandiarchive.s3.amazonaws.com/blobs/d1e/45c/d1e45cb5-1fd1-44b6-b57a-4c08d1b724cf
  1096. dateModified: '2025-05-09T14:38:52.977569-04:00'
  1097. datePublished: '2025-05-12T16:26:19.949989+00:00'
  1098. digest:
  1099. dandi:dandi-etag: 0f563aa5829e1686a204dba3da70307a-1
  1100. dandi:sha2-256: b75b87628fdfee8ed89b1812ecc6c9e9dc8b4a807ccadf422cf1f740148e5ec0
  1101. encodingFormat: image/png
  1102. id: dandiasset:8b51afd3-756b-437b-9a50-584ec49e9814
  1103. identifier: 8b51afd3-756b-437b-9a50-584ec49e9814
  1104. path: derivatives/labels/sub-rat3/micr/sub-rat3_sample-data9_SEM_seg-myelin-manual.png
  1105. publishedBy:
  1106. endDate: '2025-05-12T16:26:19.949989+00:00'
  1107. id: urn:uuid:c829c232-4e3c-4e5a-bceb-7160477f933d
  1108. name: DANDI publish
  1109. schemaKey: PublishActivity
  1110. startDate: '2025-05-12T16:26:19.949989+00:00'
  1111. wasAssociatedWith:
  1112. - id: urn:uuid:e7672d4b-65de-4a3a-8223-001ed0fd1e83
  1113. identifier: RRID:SCR_017571
  1114. name: DANDI API
  1115. schemaKey: Software
  1116. version: 0.1.0
  1117. schemaKey: Asset
  1118. schemaVersion: 0.6.9
  1119. wasGeneratedBy:
  1120. - description: Metadata generated by DANDI cli
  1121. endDate: '2025-05-09T14:38:51.661285-04:00'
  1122. id: urn:uuid:08dc64d8-71a6-426a-b752-aa259677118f
  1123. name: Metadata generation
  1124. schemaKey: Activity
  1125. startDate: '2025-05-09T14:38:51.661285-04:00'
  1126. wasAssociatedWith:
  1127. - identifier: RRID:SCR_019009
  1128. name: DANDI Command Line Interface
  1129. schemaKey: Software
  1130. url: https://github.com/dandi/dandi-cli
  1131. version: 0.66.7
  1132. - description: Metadata generated by DANDI cli
  1133. endDate: '2025-05-09T14:38:52.977477-04:00'
  1134. id: urn:uuid:fc877e08-f01a-4926-968b-2614b2564e95
  1135. name: Metadata generation
  1136. schemaKey: Activity
  1137. startDate: '2025-05-09T14:38:52.977477-04:00'
  1138. wasAssociatedWith:
  1139. - identifier: RRID:SCR_019009
  1140. name: DANDI Command Line Interface
  1141. schemaKey: Software
  1142. url: https://github.com/dandi/dandi-cli
  1143. version: 0.66.7
  1144. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  1145. access:
  1146. - schemaKey: AccessRequirements
  1147. status: dandi:OpenAccess
  1148. blobDateModified: '2022-02-21T15:05:29.484414-05:00'
  1149. contentSize: 44241
  1150. contentUrl:
  1151. - https://api.dandiarchive.org/api/assets/ed76ec94-a9f0-43ab-a671-e09420ce396b/download/
  1152. - https://dandiarchive.s3.amazonaws.com/blobs/bca/f58/bcaf58c7-2f1d-4602-9cd3-39c672f2ceda
  1153. dateModified: '2025-05-09T14:38:54.357839-04:00'
  1154. datePublished: '2025-05-12T16:26:19.958303+00:00'
  1155. digest:
  1156. dandi:dandi-etag: 8c12d7c4c5afbf7d4cced9a4b85b1dcf-1
  1157. dandi:sha2-256: c00e28b13e206c05dfae4cfc9d4b4c51016a2771624ea1b0b9a7e79826268c53
  1158. encodingFormat: image/png
  1159. id: dandiasset:ed76ec94-a9f0-43ab-a671-e09420ce396b
  1160. identifier: ed76ec94-a9f0-43ab-a671-e09420ce396b
  1161. path: derivatives/labels/sub-rat4/micr/sub-rat4_sample-data12_SEM_seg-axonmyelin-manual.png
  1162. publishedBy:
  1163. endDate: '2025-05-12T16:26:19.958303+00:00'
  1164. id: urn:uuid:a1b1be0a-0d59-4245-a45c-2d911feb40e1
  1165. name: DANDI publish
  1166. schemaKey: PublishActivity
  1167. startDate: '2025-05-12T16:26:19.958303+00:00'
  1168. wasAssociatedWith:
  1169. - id: urn:uuid:fb29c65b-ff1e-4a79-bdcc-210ff2166638
  1170. identifier: RRID:SCR_017571
  1171. name: DANDI API
  1172. schemaKey: Software
  1173. version: 0.1.0
  1174. schemaKey: Asset
  1175. schemaVersion: 0.6.9
  1176. wasGeneratedBy:
  1177. - description: Metadata generated by DANDI cli
  1178. endDate: '2025-05-09T14:38:53.649072-04:00'
  1179. id: urn:uuid:e5aec6d2-2ecc-4413-98ce-4ae3878e2d92
  1180. name: Metadata generation
  1181. schemaKey: Activity
  1182. startDate: '2025-05-09T14:38:53.649072-04: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.66.7
  1189. - description: Metadata generated by DANDI cli
  1190. endDate: '2025-05-09T14:38:54.357742-04:00'
  1191. id: urn:uuid:38660653-1024-4928-ae58-d18c2fc2ab83
  1192. name: Metadata generation
  1193. schemaKey: Activity
  1194. startDate: '2025-05-09T14:38:54.357742-04: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.66.7
  1201. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  1202. access:
  1203. - schemaKey: AccessRequirements
  1204. status: dandi:OpenAccess
  1205. blobDateModified: '2022-02-21T15:05:29.485414-05:00'
  1206. contentSize: 41623
  1207. contentUrl:
  1208. - https://api.dandiarchive.org/api/assets/348cbf79-c5ac-41fe-aa76-dadf0a8d6f11/download/
  1209. - https://dandiarchive.s3.amazonaws.com/blobs/0c5/440/0c544068-c71d-4a79-8af7-0a1ed5d7722a
  1210. dateModified: '2025-05-09T14:38:55.363941-04:00'
  1211. datePublished: '2025-05-12T16:26:19.965670+00:00'
  1212. digest:
  1213. dandi:dandi-etag: 6a60bd28116d99f64f035677674a28d9-1
  1214. dandi:sha2-256: ead5eb0202d9320eb748ca269a40146180f52a3a8ff3d27b5b6df831c6b0fef6
  1215. encodingFormat: image/png
  1216. id: dandiasset:348cbf79-c5ac-41fe-aa76-dadf0a8d6f11
  1217. identifier: 348cbf79-c5ac-41fe-aa76-dadf0a8d6f11
  1218. path: derivatives/labels/sub-rat4/micr/sub-rat4_sample-data12_SEM_seg-myelin-manual.png
  1219. publishedBy:
  1220. endDate: '2025-05-12T16:26:19.965670+00:00'
  1221. id: urn:uuid:f20071a5-afc6-4c76-800f-5f609a5fe350
  1222. name: DANDI publish
  1223. schemaKey: PublishActivity
  1224. startDate: '2025-05-12T16:26:19.965670+00:00'
  1225. wasAssociatedWith:
  1226. - id: urn:uuid:cf4921e7-6fd1-47ec-8c73-93469207aa2e
  1227. identifier: RRID:SCR_017571
  1228. name: DANDI API
  1229. schemaKey: Software
  1230. version: 0.1.0
  1231. schemaKey: Asset
  1232. schemaVersion: 0.6.9
  1233. wasGeneratedBy:
  1234. - description: Metadata generated by DANDI cli
  1235. endDate: '2025-05-09T14:38:54.492405-04:00'
  1236. id: urn:uuid:c872bef1-c66d-49ee-aa52-421b5c267802
  1237. name: Metadata generation
  1238. schemaKey: Activity
  1239. startDate: '2025-05-09T14:38:54.492405-04:00'
  1240. wasAssociatedWith:
  1241. - identifier: RRID:SCR_019009
  1242. name: DANDI Command Line Interface
  1243. schemaKey: Software
  1244. url: https://github.com/dandi/dandi-cli
  1245. version: 0.66.7
  1246. - description: Metadata generated by DANDI cli
  1247. endDate: '2025-05-09T14:38:55.363829-04:00'
  1248. id: urn:uuid:a5211e31-8d4b-4bf2-acf1-589961d85ce2
  1249. name: Metadata generation
  1250. schemaKey: Activity
  1251. startDate: '2025-05-09T14:38:55.363829-04:00'
  1252. wasAssociatedWith:
  1253. - identifier: RRID:SCR_019009
  1254. name: DANDI Command Line Interface
  1255. schemaKey: Software
  1256. url: https://github.com/dandi/dandi-cli
  1257. version: 0.66.7
  1258. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  1259. access:
  1260. - schemaKey: AccessRequirements
  1261. status: dandi:OpenAccess
  1262. blobDateModified: '2025-04-30T16:37:23.357881-04:00'
  1263. contentSize: 164063
  1264. contentUrl:
  1265. - https://api.dandiarchive.org/api/assets/d28c7854-3062-4bc9-94d3-b8433f7e1d37/download/
  1266. - https://dandiarchive.s3.amazonaws.com/blobs/848/0ae/8480aee6-2b37-496d-b929-7145775d37d1
  1267. dateModified: '2025-05-09T14:38:56.268702-04:00'
  1268. datePublished: '2025-05-12T16:26:19.973947+00:00'
  1269. digest:
  1270. dandi:dandi-etag: 1d5b42d8e8b9ee5066145aa674d8851c-1
  1271. dandi:sha2-256: e4d784804fa0bae91ed7ff0be6c583f90681c51a6a2e0e1f7e47f7495fcd4420
  1272. encodingFormat: image/png
  1273. id: dandiasset:d28c7854-3062-4bc9-94d3-b8433f7e1d37
  1274. identifier: d28c7854-3062-4bc9-94d3-b8433f7e1d37
  1275. path: derivatives/labels/sub-rat5/micr/sub-rat5_sample-data14_SEM_seg-axon-manual.png
  1276. publishedBy:
  1277. endDate: '2025-05-12T16:26:19.973947+00:00'
  1278. id: urn:uuid:363a5d58-af0c-4b8e-925a-c21bd80e843a
  1279. name: DANDI publish
  1280. schemaKey: PublishActivity
  1281. startDate: '2025-05-12T16:26:19.973947+00:00'
  1282. wasAssociatedWith:
  1283. - id: urn:uuid:95f5f725-be7e-4313-8935-b7482bdf316e
  1284. identifier: RRID:SCR_017571
  1285. name: DANDI API
  1286. schemaKey: Software
  1287. version: 0.1.0
  1288. schemaKey: Asset
  1289. schemaVersion: 0.6.9
  1290. wasGeneratedBy:
  1291. - description: Metadata generated by DANDI cli
  1292. endDate: '2025-05-09T14:38:55.279580-04:00'
  1293. id: urn:uuid:3a3c916a-3412-40ef-826c-aeff3a0bdd9e
  1294. name: Metadata generation
  1295. schemaKey: Activity
  1296. startDate: '2025-05-09T14:38:55.279580-04:00'
  1297. wasAssociatedWith:
  1298. - identifier: RRID:SCR_019009
  1299. name: DANDI Command Line Interface
  1300. schemaKey: Software
  1301. url: https://github.com/dandi/dandi-cli
  1302. version: 0.66.7
  1303. - description: Metadata generated by DANDI cli
  1304. endDate: '2025-05-09T14:38:56.268618-04:00'
  1305. id: urn:uuid:16fee479-7b3e-4698-91b3-d348c3f54243
  1306. name: Metadata generation
  1307. schemaKey: Activity
  1308. startDate: '2025-05-09T14:38:56.268618-04:00'
  1309. wasAssociatedWith:
  1310. - identifier: RRID:SCR_019009
  1311. name: DANDI Command Line Interface
  1312. schemaKey: Software
  1313. url: https://github.com/dandi/dandi-cli
  1314. version: 0.66.7
  1315. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  1316. access:
  1317. - schemaKey: AccessRequirements
  1318. status: dandi:OpenAccess
  1319. blobDateModified: '2025-04-30T14:02:47.249652-04:00'
  1320. contentSize: 274594
  1321. contentUrl:
  1322. - https://api.dandiarchive.org/api/assets/69d54c2b-5270-4b7c-a5d0-46310131de25/download/
  1323. - https://dandiarchive.s3.amazonaws.com/blobs/aeb/64e/aeb64e52-cb9f-4253-bbc6-9366dc0d8f75
  1324. dateModified: '2025-05-09T14:38:56.335365-04:00'
  1325. datePublished: '2025-05-12T16:26:19.981455+00:00'
  1326. digest:
  1327. dandi:dandi-etag: 6db9571e0849e0b0114fddc4ce631ff9-1
  1328. dandi:sha2-256: 4080cdb07f5ada0da413744256ca888e8f88bb72101cdce512fdd309a461cf24
  1329. encodingFormat: image/png
  1330. id: dandiasset:69d54c2b-5270-4b7c-a5d0-46310131de25
  1331. identifier: 69d54c2b-5270-4b7c-a5d0-46310131de25
  1332. path: derivatives/labels/sub-rat5/micr/sub-rat5_sample-data14_SEM_seg-axonmyelin-manual.png
  1333. publishedBy:
  1334. endDate: '2025-05-12T16:26:19.981455+00:00'
  1335. id: urn:uuid:7ebda948-0572-4a52-87ff-8ad98016ed2c
  1336. name: DANDI publish
  1337. schemaKey: PublishActivity
  1338. startDate: '2025-05-12T16:26:19.981455+00:00'
  1339. wasAssociatedWith:
  1340. - id: urn:uuid:7790908d-2fb2-4e75-b9c4-70f15c7531a3
  1341. identifier: RRID:SCR_017571
  1342. name: DANDI API
  1343. schemaKey: Software
  1344. version: 0.1.0
  1345. schemaKey: Asset
  1346. schemaVersion: 0.6.9
  1347. wasGeneratedBy:
  1348. - description: Metadata generated by DANDI cli
  1349. endDate: '2025-05-09T14:38:55.455607-04:00'
  1350. id: urn:uuid:4fc46301-aafb-4a7f-9d79-f10c5955f01a
  1351. name: Metadata generation
  1352. schemaKey: Activity
  1353. startDate: '2025-05-09T14:38:55.455607-04:00'
  1354. wasAssociatedWith:
  1355. - identifier: RRID:SCR_019009
  1356. name: DANDI Command Line Interface
  1357. schemaKey: Software
  1358. url: https://github.com/dandi/dandi-cli
  1359. version: 0.66.7
  1360. - description: Metadata generated by DANDI cli
  1361. endDate: '2025-05-09T14:38:56.335296-04:00'
  1362. id: urn:uuid:c78f2857-7fc7-4ea4-9367-f1a40f154caf
  1363. name: Metadata generation
  1364. schemaKey: Activity
  1365. startDate: '2025-05-09T14:38:56.335296-04:00'
  1366. wasAssociatedWith:
  1367. - identifier: RRID:SCR_019009
  1368. name: DANDI Command Line Interface
  1369. schemaKey: Software
  1370. url: https://github.com/dandi/dandi-cli
  1371. version: 0.66.7
  1372. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  1373. access:
  1374. - schemaKey: AccessRequirements
  1375. status: dandi:OpenAccess
  1376. blobDateModified: '2025-04-30T16:37:23.441881-04:00'
  1377. contentSize: 316540
  1378. contentUrl:
  1379. - https://api.dandiarchive.org/api/assets/f53cd2f7-7914-40b5-aee9-2a0714460d66/download/
  1380. - https://dandiarchive.s3.amazonaws.com/blobs/752/5a5/7525a5e7-e75d-40f0-8872-0213d45466da
  1381. dateModified: '2025-05-09T14:38:56.308029-04:00'
  1382. datePublished: '2025-05-12T16:26:19.989247+00:00'
  1383. digest:
  1384. dandi:dandi-etag: aa696563807012cfa52cbf597c9799e0-1
  1385. dandi:sha2-256: 4b4848744450e8a8a64dcba860fd83114ec0904089691e80fcb0e255ea157a78
  1386. encodingFormat: image/png
  1387. id: dandiasset:f53cd2f7-7914-40b5-aee9-2a0714460d66
  1388. identifier: f53cd2f7-7914-40b5-aee9-2a0714460d66
  1389. path: derivatives/labels/sub-rat5/micr/sub-rat5_sample-data14_SEM_seg-myelin-manual.png
  1390. publishedBy:
  1391. endDate: '2025-05-12T16:26:19.989247+00:00'
  1392. id: urn:uuid:da9018a7-182b-426b-b697-4f24189311c2
  1393. name: DANDI publish
  1394. schemaKey: PublishActivity
  1395. startDate: '2025-05-12T16:26:19.989247+00:00'
  1396. wasAssociatedWith:
  1397. - id: urn:uuid:6a332368-9e96-4eaa-801d-01405fa60777
  1398. identifier: RRID:SCR_017571
  1399. name: DANDI API
  1400. schemaKey: Software
  1401. version: 0.1.0
  1402. schemaKey: Asset
  1403. schemaVersion: 0.6.9
  1404. wasGeneratedBy:
  1405. - description: Metadata generated by DANDI cli
  1406. endDate: '2025-05-09T14:38:55.684052-04:00'
  1407. id: urn:uuid:433f8adf-e5b4-4ce1-aa84-ee2afacdef08
  1408. name: Metadata generation
  1409. schemaKey: Activity
  1410. startDate: '2025-05-09T14:38:55.684052-04:00'
  1411. wasAssociatedWith:
  1412. - identifier: RRID:SCR_019009
  1413. name: DANDI Command Line Interface
  1414. schemaKey: Software
  1415. url: https://github.com/dandi/dandi-cli
  1416. version: 0.66.7
  1417. - description: Metadata generated by DANDI cli
  1418. endDate: '2025-05-09T14:38:56.307951-04:00'
  1419. id: urn:uuid:10ddb94c-adf0-4435-bdd0-794ffaaeff01
  1420. name: Metadata generation
  1421. schemaKey: Activity
  1422. startDate: '2025-05-09T14:38:56.307951-04:00'
  1423. wasAssociatedWith:
  1424. - identifier: RRID:SCR_019009
  1425. name: DANDI Command Line Interface
  1426. schemaKey: Software
  1427. url: https://github.com/dandi/dandi-cli
  1428. version: 0.66.7
  1429. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  1430. access:
  1431. - schemaKey: AccessRequirements
  1432. status: dandi:OpenAccess
  1433. blobDateModified: '2025-04-30T16:37:22.981880-04:00'
  1434. contentSize: 36643
  1435. contentUrl:
  1436. - https://api.dandiarchive.org/api/assets/2c7dbf20-011e-494f-b8ac-f77b0abc87a5/download/
  1437. - https://dandiarchive.s3.amazonaws.com/blobs/6ff/1aa/6ff1aa04-9626-4477-9d36-3537bef6dd7c
  1438. dateModified: '2025-05-09T14:38:56.932365-04:00'
  1439. datePublished: '2025-05-12T16:26:19.997498+00:00'
  1440. digest:
  1441. dandi:dandi-etag: df9c8637031dc6f757f17108eedb5bfb-1
  1442. dandi:sha2-256: 52fb60fb7e71dd3b43a7e43ffdb35e465f8b472efddfcdb35bd2659927789098
  1443. encodingFormat: image/png
  1444. id: dandiasset:2c7dbf20-011e-494f-b8ac-f77b0abc87a5
  1445. identifier: 2c7dbf20-011e-494f-b8ac-f77b0abc87a5
  1446. path: derivatives/labels/sub-rat6/micr/sub-rat6_sample-data15_SEM_seg-axon-manual.png
  1447. publishedBy:
  1448. endDate: '2025-05-12T16:26:19.997498+00:00'
  1449. id: urn:uuid:94db3ca9-0f80-4d1c-8759-23448fd308b8
  1450. name: DANDI publish
  1451. schemaKey: PublishActivity
  1452. startDate: '2025-05-12T16:26:19.997498+00:00'
  1453. wasAssociatedWith:
  1454. - id: urn:uuid:96f93d8f-a10d-452e-b965-8eeee226cbe2
  1455. identifier: RRID:SCR_017571
  1456. name: DANDI API
  1457. schemaKey: Software
  1458. version: 0.1.0
  1459. schemaKey: Asset
  1460. schemaVersion: 0.6.9
  1461. wasGeneratedBy:
  1462. - description: Metadata generated by DANDI cli
  1463. endDate: '2025-05-09T14:38:56.707125-04:00'
  1464. id: urn:uuid:09d64277-7f08-4301-9262-7bd610dc7932
  1465. name: Metadata generation
  1466. schemaKey: Activity
  1467. startDate: '2025-05-09T14:38:56.707125-04:00'
  1468. wasAssociatedWith:
  1469. - identifier: RRID:SCR_019009
  1470. name: DANDI Command Line Interface
  1471. schemaKey: Software
  1472. url: https://github.com/dandi/dandi-cli
  1473. version: 0.66.7
  1474. - description: Metadata generated by DANDI cli
  1475. endDate: '2025-05-09T14:38:56.932286-04:00'
  1476. id: urn:uuid:6237f4bb-8528-436b-a996-7c4f06a70811
  1477. name: Metadata generation
  1478. schemaKey: Activity
  1479. startDate: '2025-05-09T14:38:56.932286-04:00'
  1480. wasAssociatedWith:
  1481. - identifier: RRID:SCR_019009
  1482. name: DANDI Command Line Interface
  1483. schemaKey: Software
  1484. url: https://github.com/dandi/dandi-cli
  1485. version: 0.66.7
  1486. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  1487. access:
  1488. - schemaKey: AccessRequirements
  1489. status: dandi:OpenAccess
  1490. blobDateModified: '2025-04-30T14:14:49.836987-04:00'
  1491. contentSize: 63100
  1492. contentUrl:
  1493. - https://api.dandiarchive.org/api/assets/860dfa45-2161-49ca-948a-e4fc40c47549/download/
  1494. - https://dandiarchive.s3.amazonaws.com/blobs/cc1/e07/cc1e0757-b6cb-4087-856f-aa3a8067fdfb
  1495. dateModified: '2025-05-09T14:38:57.563398-04:00'
  1496. datePublished: '2025-05-12T16:26:20.006228+00:00'
  1497. digest:
  1498. dandi:dandi-etag: e0d949a113a8a23810fbc91f041fdafa-1
  1499. dandi:sha2-256: b571293e910b65bfb7995427694f3083e69c5d2e5c51025f2fad0e8cb04075e4
  1500. encodingFormat: image/png
  1501. id: dandiasset:860dfa45-2161-49ca-948a-e4fc40c47549
  1502. identifier: 860dfa45-2161-49ca-948a-e4fc40c47549
  1503. path: derivatives/labels/sub-rat6/micr/sub-rat6_sample-data15_SEM_seg-axonmyelin-manual.png
  1504. publishedBy:
  1505. endDate: '2025-05-12T16:26:20.006228+00:00'
  1506. id: urn:uuid:fcfbe739-aa16-4b23-bafe-c17ae77e57f2
  1507. name: DANDI publish
  1508. schemaKey: PublishActivity
  1509. startDate: '2025-05-12T16:26:20.006228+00:00'
  1510. wasAssociatedWith:
  1511. - id: urn:uuid:20dc211c-976d-4b12-96c0-bab8ebab1796
  1512. identifier: RRID:SCR_017571
  1513. name: DANDI API
  1514. schemaKey: Software
  1515. version: 0.1.0
  1516. schemaKey: Asset
  1517. schemaVersion: 0.6.9
  1518. wasGeneratedBy:
  1519. - description: Metadata generated by DANDI cli
  1520. endDate: '2025-05-09T14:38:57.265766-04:00'
  1521. id: urn:uuid:332a3a5f-c1b1-4557-80c5-3381b5f4dfc8
  1522. name: Metadata generation
  1523. schemaKey: Activity
  1524. startDate: '2025-05-09T14:38:57.265766-04:00'
  1525. wasAssociatedWith:
  1526. - identifier: RRID:SCR_019009
  1527. name: DANDI Command Line Interface
  1528. schemaKey: Software
  1529. url: https://github.com/dandi/dandi-cli
  1530. version: 0.66.7
  1531. - description: Metadata generated by DANDI cli
  1532. endDate: '2025-05-09T14:38:57.563319-04:00'
  1533. id: urn:uuid:236b45eb-52b8-49c5-b0a4-5b67b5eaca0c
  1534. name: Metadata generation
  1535. schemaKey: Activity
  1536. startDate: '2025-05-09T14:38:57.563319-04:00'
  1537. wasAssociatedWith:
  1538. - identifier: RRID:SCR_019009
  1539. name: DANDI Command Line Interface
  1540. schemaKey: Software
  1541. url: https://github.com/dandi/dandi-cli
  1542. version: 0.66.7
  1543. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  1544. access:
  1545. - schemaKey: AccessRequirements
  1546. status: dandi:OpenAccess
  1547. blobDateModified: '2025-04-30T16:37:23.000880-04:00'
  1548. contentSize: 75098
  1549. contentUrl:
  1550. - https://api.dandiarchive.org/api/assets/85a2ee22-d10d-4792-9720-f231754fbd1e/download/
  1551. - https://dandiarchive.s3.amazonaws.com/blobs/1e0/485/1e0485b2-f30a-4c60-9bf3-c9ddbaca7503
  1552. dateModified: '2025-05-09T14:38:58.552866-04:00'
  1553. datePublished: '2025-05-12T16:26:20.015325+00:00'
  1554. digest:
  1555. dandi:dandi-etag: 143c6c18e3cdce6769ceb648eea0547b-1
  1556. dandi:sha2-256: d7a59fed498211225eed3262fc4e25fab40e154b8a644a0db7288ab7c8a21db3
  1557. encodingFormat: image/png
  1558. id: dandiasset:85a2ee22-d10d-4792-9720-f231754fbd1e
  1559. identifier: 85a2ee22-d10d-4792-9720-f231754fbd1e
  1560. path: derivatives/labels/sub-rat6/micr/sub-rat6_sample-data15_SEM_seg-myelin-manual.png
  1561. publishedBy:
  1562. endDate: '2025-05-12T16:26:20.015325+00:00'
  1563. id: urn:uuid:04c27c28-6835-482f-a80c-9313dca4aca6
  1564. name: DANDI publish
  1565. schemaKey: PublishActivity
  1566. startDate: '2025-05-12T16:26:20.015325+00:00'
  1567. wasAssociatedWith:
  1568. - id: urn:uuid:85b38d4b-cbc1-4150-926f-df422c067229
  1569. identifier: RRID:SCR_017571
  1570. name: DANDI API
  1571. schemaKey: Software
  1572. version: 0.1.0
  1573. schemaKey: Asset
  1574. schemaVersion: 0.6.9
  1575. wasGeneratedBy:
  1576. - description: Metadata generated by DANDI cli
  1577. endDate: '2025-05-09T14:38:58.000264-04:00'
  1578. id: urn:uuid:bf4446c6-934e-4674-a58a-f4e3235142cc
  1579. name: Metadata generation
  1580. schemaKey: Activity
  1581. startDate: '2025-05-09T14:38:58.000264-04:00'
  1582. wasAssociatedWith:
  1583. - identifier: RRID:SCR_019009
  1584. name: DANDI Command Line Interface
  1585. schemaKey: Software
  1586. url: https://github.com/dandi/dandi-cli
  1587. version: 0.66.7
  1588. - description: Metadata generated by DANDI cli
  1589. endDate: '2025-05-09T14:38:58.552786-04:00'
  1590. id: urn:uuid:1f43638e-a6b5-495a-ae46-b014554892f0
  1591. name: Metadata generation
  1592. schemaKey: Activity
  1593. startDate: '2025-05-09T14:38:58.552786-04:00'
  1594. wasAssociatedWith:
  1595. - identifier: RRID:SCR_019009
  1596. name: DANDI Command Line Interface
  1597. schemaKey: Software
  1598. url: https://github.com/dandi/dandi-cli
  1599. version: 0.66.7
  1600. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  1601. access:
  1602. - schemaKey: AccessRequirements
  1603. status: dandi:OpenAccess
  1604. blobDateModified: '2022-02-21T15:05:29.489414-05:00'
  1605. contentSize: 83288
  1606. contentUrl:
  1607. - https://api.dandiarchive.org/api/assets/866de7ab-d1a4-4299-9e4b-e92ec8721d19/download/
  1608. - https://dandiarchive.s3.amazonaws.com/blobs/f4d/30d/f4d30d80-5b7a-45c8-b92e-61f11ca8f62b
  1609. dateModified: '2025-05-09T14:38:59.101471-04:00'
  1610. datePublished: '2025-05-12T16:26:20.024255+00:00'
  1611. digest:
  1612. dandi:dandi-etag: 12b2d0d6b7b45022ab0c7ad7551b5c6c-1
  1613. dandi:sha2-256: a11566c978c555bbf2999c16fa8ced744243da4025044b359c01338cc0ed7207
  1614. encodingFormat: image/png
  1615. id: dandiasset:866de7ab-d1a4-4299-9e4b-e92ec8721d19
  1616. identifier: 866de7ab-d1a4-4299-9e4b-e92ec8721d19
  1617. path: derivatives/labels/sub-rat7/micr/sub-rat7_sample-Maxo03img60_SEM_seg-axon-manual.png
  1618. publishedBy:
  1619. endDate: '2025-05-12T16:26:20.024255+00:00'
  1620. id: urn:uuid:d7f47d85-b4b9-4a97-9abd-cc2d55d819c7
  1621. name: DANDI publish
  1622. schemaKey: PublishActivity
  1623. startDate: '2025-05-12T16:26:20.024255+00:00'
  1624. wasAssociatedWith:
  1625. - id: urn:uuid:0eae95bd-874d-40f0-b1ec-2ae624fdd7a0
  1626. identifier: RRID:SCR_017571
  1627. name: DANDI API
  1628. schemaKey: Software
  1629. version: 0.1.0
  1630. schemaKey: Asset
  1631. schemaVersion: 0.6.9
  1632. wasGeneratedBy:
  1633. - description: Metadata generated by DANDI cli
  1634. endDate: '2025-05-09T14:38:58.431341-04:00'
  1635. id: urn:uuid:039a6d07-d337-435c-a501-a3708b21fc7f
  1636. name: Metadata generation
  1637. schemaKey: Activity
  1638. startDate: '2025-05-09T14:38:58.431341-04:00'
  1639. wasAssociatedWith:
  1640. - identifier: RRID:SCR_019009
  1641. name: DANDI Command Line Interface
  1642. schemaKey: Software
  1643. url: https://github.com/dandi/dandi-cli
  1644. version: 0.66.7
  1645. - description: Metadata generated by DANDI cli
  1646. endDate: '2025-05-09T14:38:59.101392-04:00'
  1647. id: urn:uuid:0863c50e-9219-4c60-a1e6-80863cb9ca68
  1648. name: Metadata generation
  1649. schemaKey: Activity
  1650. startDate: '2025-05-09T14:38:59.101392-04:00'
  1651. wasAssociatedWith:
  1652. - identifier: RRID:SCR_019009
  1653. name: DANDI Command Line Interface
  1654. schemaKey: Software
  1655. url: https://github.com/dandi/dandi-cli
  1656. version: 0.66.7
  1657. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  1658. access:
  1659. - schemaKey: AccessRequirements
  1660. status: dandi:OpenAccess
  1661. blobDateModified: '2022-02-21T15:05:29.489414-05:00'
  1662. contentSize: 163464
  1663. contentUrl:
  1664. - https://api.dandiarchive.org/api/assets/b8828072-02dc-49ab-b404-c4c7e9350b48/download/
  1665. - https://dandiarchive.s3.amazonaws.com/blobs/686/303/68630313-fdd9-4b94-970e-9909d82e2e72
  1666. dateModified: '2025-05-09T14:38:59.249308-04:00'
  1667. datePublished: '2025-05-12T16:26:20.032611+00:00'
  1668. digest:
  1669. dandi:dandi-etag: a9760d6a9c9e6168a5a042a730eb2965-1
  1670. dandi:sha2-256: 2f698f2760e9b725385ab2b67287d169857e0b29ac0014e11cd31a420f203ad1
  1671. encodingFormat: image/png
  1672. id: dandiasset:b8828072-02dc-49ab-b404-c4c7e9350b48
  1673. identifier: b8828072-02dc-49ab-b404-c4c7e9350b48
  1674. path: derivatives/labels/sub-rat7/micr/sub-rat7_sample-Maxo03img60_SEM_seg-axonmyelin-manual.png
  1675. publishedBy:
  1676. endDate: '2025-05-12T16:26:20.032611+00:00'
  1677. id: urn:uuid:bdb10541-b59c-4ee1-a889-6471d3ab273d
  1678. name: DANDI publish
  1679. schemaKey: PublishActivity
  1680. startDate: '2025-05-12T16:26:20.032611+00:00'
  1681. wasAssociatedWith:
  1682. - id: urn:uuid:3d7f1251-fcd8-42c3-8382-bc46a8d82074
  1683. identifier: RRID:SCR_017571
  1684. name: DANDI API
  1685. schemaKey: Software
  1686. version: 0.1.0
  1687. schemaKey: Asset
  1688. schemaVersion: 0.6.9
  1689. wasGeneratedBy:
  1690. - description: Metadata generated by DANDI cli
  1691. endDate: '2025-05-09T14:38:58.468082-04:00'
  1692. id: urn:uuid:5cf09bf6-41be-4c1e-a4ec-8614cc4253f8
  1693. name: Metadata generation
  1694. schemaKey: Activity
  1695. startDate: '2025-05-09T14:38:58.468082-04:00'
  1696. wasAssociatedWith:
  1697. - identifier: RRID:SCR_019009
  1698. name: DANDI Command Line Interface
  1699. schemaKey: Software
  1700. url: https://github.com/dandi/dandi-cli
  1701. version: 0.66.7
  1702. - description: Metadata generated by DANDI cli
  1703. endDate: '2025-05-09T14:38:59.249253-04:00'
  1704. id: urn:uuid:f12aeaa8-4cd8-4b26-934b-03082c266b6d
  1705. name: Metadata generation
  1706. schemaKey: Activity
  1707. startDate: '2025-05-09T14:38:59.249253-04:00'
  1708. wasAssociatedWith:
  1709. - identifier: RRID:SCR_019009
  1710. name: DANDI Command Line Interface
  1711. schemaKey: Software
  1712. url: https://github.com/dandi/dandi-cli
  1713. version: 0.66.7
  1714. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  1715. access:
  1716. - schemaKey: AccessRequirements
  1717. status: dandi:OpenAccess
  1718. blobDateModified: '2022-02-21T15:05:29.490414-05:00'
  1719. contentSize: 29129
  1720. contentUrl:
  1721. - https://api.dandiarchive.org/api/assets/f2114fd3-4af3-4ff1-b218-129fd93fc5d2/download/
  1722. - https://dandiarchive.s3.amazonaws.com/blobs/50a/df0/50adf012-e6aa-472e-bc9c-5875020924d5
  1723. dateModified: '2025-05-09T14:38:59.895563-04:00'
  1724. datePublished: '2025-05-12T16:26:20.041068+00:00'
  1725. digest:
  1726. dandi:dandi-etag: 17e819addba159466028b01b2eaac363-1
  1727. dandi:sha2-256: e8ffbee8a9d006ebc29b8a67a77f261c4062db5927161866291a4736f23555bc
  1728. encodingFormat: image/png
  1729. id: dandiasset:f2114fd3-4af3-4ff1-b218-129fd93fc5d2
  1730. identifier: f2114fd3-4af3-4ff1-b218-129fd93fc5d2
  1731. path: derivatives/labels/sub-rat8/micr/sub-rat8_sample-V915_SEM_seg-axon-manual.png
  1732. publishedBy:
  1733. endDate: '2025-05-12T16:26:20.041068+00:00'
  1734. id: urn:uuid:eb5ad48e-e2bf-4250-a675-547738149f8d
  1735. name: DANDI publish
  1736. schemaKey: PublishActivity
  1737. startDate: '2025-05-12T16:26:20.041068+00:00'
  1738. wasAssociatedWith:
  1739. - id: urn:uuid:7c77710b-c28d-44eb-9a5c-c4fe7aa3e889
  1740. identifier: RRID:SCR_017571
  1741. name: DANDI API
  1742. schemaKey: Software
  1743. version: 0.1.0
  1744. schemaKey: Asset
  1745. schemaVersion: 0.6.9
  1746. wasGeneratedBy:
  1747. - description: Metadata generated by DANDI cli
  1748. endDate: '2025-05-09T14:38:59.448562-04:00'
  1749. id: urn:uuid:1f04935e-a500-426d-8e11-75b0f1c8c896
  1750. name: Metadata generation
  1751. schemaKey: Activity
  1752. startDate: '2025-05-09T14:38:59.448562-04:00'
  1753. wasAssociatedWith:
  1754. - identifier: RRID:SCR_019009
  1755. name: DANDI Command Line Interface
  1756. schemaKey: Software
  1757. url: https://github.com/dandi/dandi-cli
  1758. version: 0.66.7
  1759. - description: Metadata generated by DANDI cli
  1760. endDate: '2025-05-09T14:38:59.895503-04:00'
  1761. id: urn:uuid:648a2df1-10d0-4422-a23f-40e82a944744
  1762. name: Metadata generation
  1763. schemaKey: Activity
  1764. startDate: '2025-05-09T14:38:59.895503-04:00'
  1765. wasAssociatedWith:
  1766. - identifier: RRID:SCR_019009
  1767. name: DANDI Command Line Interface
  1768. schemaKey: Software
  1769. url: https://github.com/dandi/dandi-cli
  1770. version: 0.66.7
  1771. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  1772. access:
  1773. - schemaKey: AccessRequirements
  1774. status: dandi:OpenAccess
  1775. blobDateModified: '2022-02-21T15:05:29.490414-05:00'
  1776. contentSize: 156656
  1777. contentUrl:
  1778. - https://api.dandiarchive.org/api/assets/2045f93b-4f31-463d-81f8-2cb2bf267fd2/download/
  1779. - https://dandiarchive.s3.amazonaws.com/blobs/545/f4e/545f4e85-5579-4bd2-a968-f27b70a4a642
  1780. dateModified: '2025-05-09T14:38:59.514479-04:00'
  1781. datePublished: '2025-05-12T16:26:20.048414+00:00'
  1782. digest:
  1783. dandi:dandi-etag: 1be99c15f32d1e91b9ee777de745e0cd-1
  1784. dandi:sha2-256: 4f7f573d4428e39b8949bad9ffa8911f140c6d72555ece4920ec7f768f47459d
  1785. encodingFormat: image/png
  1786. id: dandiasset:2045f93b-4f31-463d-81f8-2cb2bf267fd2
  1787. identifier: 2045f93b-4f31-463d-81f8-2cb2bf267fd2
  1788. path: derivatives/labels/sub-rat7/micr/sub-rat7_sample-Maxo03img60_SEM_seg-myelin-manual.png
  1789. publishedBy:
  1790. endDate: '2025-05-12T16:26:20.048414+00:00'
  1791. id: urn:uuid:4055d796-0248-438c-9bd7-50b276f35ce5
  1792. name: DANDI publish
  1793. schemaKey: PublishActivity
  1794. startDate: '2025-05-12T16:26:20.048414+00:00'
  1795. wasAssociatedWith:
  1796. - id: urn:uuid:abca7c34-74fd-45fc-98b9-ad53610013b5
  1797. identifier: RRID:SCR_017571
  1798. name: DANDI API
  1799. schemaKey: Software
  1800. version: 0.1.0
  1801. schemaKey: Asset
  1802. schemaVersion: 0.6.9
  1803. wasGeneratedBy:
  1804. - description: Metadata generated by DANDI cli
  1805. endDate: '2025-05-09T14:38:58.914126-04:00'
  1806. id: urn:uuid:96fa3ac0-e5ca-472a-a0c8-d409c2f0ba64
  1807. name: Metadata generation
  1808. schemaKey: Activity
  1809. startDate: '2025-05-09T14:38:58.914126-04:00'
  1810. wasAssociatedWith:
  1811. - identifier: RRID:SCR_019009
  1812. name: DANDI Command Line Interface
  1813. schemaKey: Software
  1814. url: https://github.com/dandi/dandi-cli
  1815. version: 0.66.7
  1816. - description: Metadata generated by DANDI cli
  1817. endDate: '2025-05-09T14:38:59.514422-04:00'
  1818. id: urn:uuid:c1a95344-74a3-43c7-9a4a-edda82c4111c
  1819. name: Metadata generation
  1820. schemaKey: Activity
  1821. startDate: '2025-05-09T14:38:59.514422-04:00'
  1822. wasAssociatedWith:
  1823. - identifier: RRID:SCR_019009
  1824. name: DANDI Command Line Interface
  1825. schemaKey: Software
  1826. url: https://github.com/dandi/dandi-cli
  1827. version: 0.66.7
  1828. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  1829. access:
  1830. - schemaKey: AccessRequirements
  1831. status: dandi:OpenAccess
  1832. blobDateModified: '2022-02-21T15:05:29.491414-05:00'
  1833. contentSize: 61264
  1834. contentUrl:
  1835. - https://api.dandiarchive.org/api/assets/f03ed6f3-6b37-4330-b643-2466e79d2ce7/download/
  1836. - https://dandiarchive.s3.amazonaws.com/blobs/c95/24d/c9524d67-13b0-4e97-a585-3948f2bcae98
  1837. dateModified: '2025-05-09T14:39:01.036286-04:00'
  1838. datePublished: '2025-05-12T16:26:20.056782+00:00'
  1839. digest:
  1840. dandi:dandi-etag: 0c23671c7c7662b3ba0f7efa996cae02-1
  1841. dandi:sha2-256: 4da81488eb59527efebcaac06e321e0745e9ac092bf1ae984be445fbeb23060c
  1842. encodingFormat: image/png
  1843. id: dandiasset:f03ed6f3-6b37-4330-b643-2466e79d2ce7
  1844. identifier: f03ed6f3-6b37-4330-b643-2466e79d2ce7
  1845. path: derivatives/labels/sub-rat8/micr/sub-rat8_sample-V915_SEM_seg-axonmyelin-manual.png
  1846. publishedBy:
  1847. endDate: '2025-05-12T16:26:20.056782+00:00'
  1848. id: urn:uuid:96fe1edc-1787-4796-b391-fe9319da188f
  1849. name: DANDI publish
  1850. schemaKey: PublishActivity
  1851. startDate: '2025-05-12T16:26:20.056782+00:00'
  1852. wasAssociatedWith:
  1853. - id: urn:uuid:b7b4f36b-0ad9-439c-a171-67dd34423234
  1854. identifier: RRID:SCR_017571
  1855. name: DANDI API
  1856. schemaKey: Software
  1857. version: 0.1.0
  1858. schemaKey: Asset
  1859. schemaVersion: 0.6.9
  1860. wasGeneratedBy:
  1861. - description: Metadata generated by DANDI cli
  1862. endDate: '2025-05-09T14:39:00.466190-04:00'
  1863. id: urn:uuid:4dc28157-85b9-4314-8d6d-2eec7b7fdb65
  1864. name: Metadata generation
  1865. schemaKey: Activity
  1866. startDate: '2025-05-09T14:39:00.466190-04:00'
  1867. wasAssociatedWith:
  1868. - identifier: RRID:SCR_019009
  1869. name: DANDI Command Line Interface
  1870. schemaKey: Software
  1871. url: https://github.com/dandi/dandi-cli
  1872. version: 0.66.7
  1873. - description: Metadata generated by DANDI cli
  1874. endDate: '2025-05-09T14:39:01.036206-04:00'
  1875. id: urn:uuid:540de60f-91fe-49e3-8c7f-9c218c02c54e
  1876. name: Metadata generation
  1877. schemaKey: Activity
  1878. startDate: '2025-05-09T14:39:01.036206-04:00'
  1879. wasAssociatedWith:
  1880. - identifier: RRID:SCR_019009
  1881. name: DANDI Command Line Interface
  1882. schemaKey: Software
  1883. url: https://github.com/dandi/dandi-cli
  1884. version: 0.66.7
  1885. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  1886. access:
  1887. - schemaKey: AccessRequirements
  1888. status: dandi:OpenAccess
  1889. blobDateModified: '2022-02-21T15:05:29.491414-05:00'
  1890. contentSize: 330
  1891. contentUrl:
  1892. - https://api.dandiarchive.org/api/assets/88ddad02-2460-44f5-aafc-5231f9b582b2/download/
  1893. - https://dandiarchive.s3.amazonaws.com/blobs/15d/467/15d4675c-5e10-42c8-ad0e-1a9ae2fe317d
  1894. dateModified: '2025-05-09T14:39:02.388269-04:00'
  1895. datePublished: '2025-05-12T16:26:20.064472+00:00'
  1896. digest:
  1897. dandi:dandi-etag: a498c1e96aed5748ad760f687f7a9d4f-1
  1898. dandi:sha2-256: 016c5735fc7f99ed8ca8314225f35a761f6d6a457a6d0bd900ebc942f9374ec9
  1899. encodingFormat: application/json
  1900. id: dandiasset:88ddad02-2460-44f5-aafc-5231f9b582b2
  1901. identifier: 88ddad02-2460-44f5-aafc-5231f9b582b2
  1902. path: samples.json
  1903. publishedBy:
  1904. endDate: '2025-05-12T16:26:20.064472+00:00'
  1905. id: urn:uuid:b66ea006-ff92-4e74-b280-f25490a13940
  1906. name: DANDI publish
  1907. schemaKey: PublishActivity
  1908. startDate: '2025-05-12T16:26:20.064472+00:00'
  1909. wasAssociatedWith:
  1910. - id: urn:uuid:4034e085-3ae1-49bd-a89a-be77d5dd25fb
  1911. identifier: RRID:SCR_017571
  1912. name: DANDI API
  1913. schemaKey: Software
  1914. version: 0.1.0
  1915. schemaKey: Asset
  1916. schemaVersion: 0.6.9
  1917. wasAttributedTo: []
  1918. wasGeneratedBy:
  1919. - description: Metadata generated by DANDI cli
  1920. endDate: '2025-05-09T14:39:01.869549-04:00'
  1921. id: urn:uuid:6dabab77-0791-4a9d-8981-139a3f96b4a2
  1922. name: Metadata generation
  1923. schemaKey: Activity
  1924. startDate: '2025-05-09T14:39:01.869549-04:00'
  1925. wasAssociatedWith:
  1926. - identifier: RRID:SCR_019009
  1927. name: DANDI Command Line Interface
  1928. schemaKey: Software
  1929. url: https://github.com/dandi/dandi-cli
  1930. version: 0.66.7
  1931. - description: Metadata generated by DANDI cli
  1932. endDate: '2025-05-09T14:39:02.388188-04:00'
  1933. id: urn:uuid:69a2c119-4d1d-4517-8ad4-b84c6109042d
  1934. name: Metadata generation
  1935. schemaKey: Activity
  1936. startDate: '2025-05-09T14:39:02.388188-04:00'
  1937. wasAssociatedWith:
  1938. - identifier: RRID:SCR_019009
  1939. name: DANDI Command Line Interface
  1940. schemaKey: Software
  1941. url: https://github.com/dandi/dandi-cli
  1942. version: 0.66.7
  1943. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  1944. access:
  1945. - schemaKey: AccessRequirements
  1946. status: dandi:OpenAccess
  1947. blobDateModified: '2022-02-21T15:05:29.491414-05:00'
  1948. contentSize: 58430
  1949. contentUrl:
  1950. - https://api.dandiarchive.org/api/assets/667fa295-5e13-41c5-bbe0-5e7ac55473b3/download/
  1951. - https://dandiarchive.s3.amazonaws.com/blobs/7cb/431/7cb431ec-7d3f-452b-babd-11c09d92db3c
  1952. dateModified: '2025-05-09T14:39:01.532230-04:00'
  1953. datePublished: '2025-05-12T16:26:20.075876+00:00'
  1954. digest:
  1955. dandi:dandi-etag: f5dd0bede89a628c9d05522d16c53849-1
  1956. dandi:sha2-256: e0d5e9a588f483f0c1b8792d7a5ed1f8fe190e99bb25954de9782c29e23751dc
  1957. encodingFormat: image/png
  1958. id: dandiasset:667fa295-5e13-41c5-bbe0-5e7ac55473b3
  1959. identifier: 667fa295-5e13-41c5-bbe0-5e7ac55473b3
  1960. path: derivatives/labels/sub-rat8/micr/sub-rat8_sample-V915_SEM_seg-myelin-manual.png
  1961. publishedBy:
  1962. endDate: '2025-05-12T16:26:20.075876+00:00'
  1963. id: urn:uuid:484c9661-be9f-4651-96a8-b273901aba92
  1964. name: DANDI publish
  1965. schemaKey: PublishActivity
  1966. startDate: '2025-05-12T16:26:20.075876+00:00'
  1967. wasAssociatedWith:
  1968. - id: urn:uuid:9830cfd7-bd00-45ef-9a67-9c0833cf1b7b
  1969. identifier: RRID:SCR_017571
  1970. name: DANDI API
  1971. schemaKey: Software
  1972. version: 0.1.0
  1973. schemaKey: Asset
  1974. schemaVersion: 0.6.9
  1975. wasGeneratedBy:
  1976. - description: Metadata generated by DANDI cli
  1977. endDate: '2025-05-09T14:39:00.886049-04:00'
  1978. id: urn:uuid:bbe257f4-909a-4413-ac79-c1d1939e1083
  1979. name: Metadata generation
  1980. schemaKey: Activity
  1981. startDate: '2025-05-09T14:39:00.886049-04:00'
  1982. wasAssociatedWith:
  1983. - identifier: RRID:SCR_019009
  1984. name: DANDI Command Line Interface
  1985. schemaKey: Software
  1986. url: https://github.com/dandi/dandi-cli
  1987. version: 0.66.7
  1988. - description: Metadata generated by DANDI cli
  1989. endDate: '2025-05-09T14:39:01.532150-04:00'
  1990. id: urn:uuid:7a854a0d-919d-4742-8dff-4b5a26e020c2
  1991. name: Metadata generation
  1992. schemaKey: Activity
  1993. startDate: '2025-05-09T14:39:01.532150-04:00'
  1994. wasAssociatedWith:
  1995. - identifier: RRID:SCR_019009
  1996. name: DANDI Command Line Interface
  1997. schemaKey: Software
  1998. url: https://github.com/dandi/dandi-cli
  1999. version: 0.66.7
  2000. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  2001. access:
  2002. - schemaKey: AccessRequirements
  2003. status: dandi:OpenAccess
  2004. blobDateModified: '2022-02-21T15:05:29.491414-05:00'
  2005. contentSize: 239
  2006. contentUrl:
  2007. - https://api.dandiarchive.org/api/assets/b490fc09-b98b-4c49-9fdd-c03c7ae35eae/download/
  2008. - https://dandiarchive.s3.amazonaws.com/blobs/f7e/61c/f7e61c4b-3419-4e84-aa70-2430dbe09f48
  2009. dateModified: '2025-05-09T14:39:02.204746-04:00'
  2010. datePublished: '2025-05-12T16:26:20.083137+00:00'
  2011. digest:
  2012. dandi:dandi-etag: 3a4df59a92c43d7f081d0ac663abd6cc-1
  2013. dandi:sha2-256: db40b34b368ca4655dc36443ec06f463429f731c0eb00cc10d557f058790d66f
  2014. encodingFormat: text/tab-separated-values
  2015. id: dandiasset:b490fc09-b98b-4c49-9fdd-c03c7ae35eae
  2016. identifier: b490fc09-b98b-4c49-9fdd-c03c7ae35eae
  2017. path: participants.tsv
  2018. publishedBy:
  2019. endDate: '2025-05-12T16:26:20.083137+00:00'
  2020. id: urn:uuid:4f0c614e-be4a-4788-b21f-e429fdee7eff
  2021. name: DANDI publish
  2022. schemaKey: PublishActivity
  2023. startDate: '2025-05-12T16:26:20.083137+00:00'
  2024. wasAssociatedWith:
  2025. - id: urn:uuid:ca699a6c-5945-4cf0-b5bc-d2f9f12a34c0
  2026. identifier: RRID:SCR_017571
  2027. name: DANDI API
  2028. schemaKey: Software
  2029. version: 0.1.0
  2030. schemaKey: Asset
  2031. schemaVersion: 0.6.9
  2032. wasAttributedTo: []
  2033. wasGeneratedBy:
  2034. - description: Metadata generated by DANDI cli
  2035. endDate: '2025-05-09T14:39:01.666354-04:00'
  2036. id: urn:uuid:52505d22-fccb-4f1f-b20c-8c4f76bcf7b5
  2037. name: Metadata generation
  2038. schemaKey: Activity
  2039. startDate: '2025-05-09T14:39:01.666354-04:00'
  2040. wasAssociatedWith:
  2041. - identifier: RRID:SCR_019009
  2042. name: DANDI Command Line Interface
  2043. schemaKey: Software
  2044. url: https://github.com/dandi/dandi-cli
  2045. version: 0.66.7
  2046. - description: Metadata generated by DANDI cli
  2047. endDate: '2025-05-09T14:39:02.204670-04:00'
  2048. id: urn:uuid:2ce29ca2-c0d1-4855-87fc-3b79c33a4bcf
  2049. name: Metadata generation
  2050. schemaKey: Activity
  2051. startDate: '2025-05-09T14:39:02.204670-04:00'
  2052. wasAssociatedWith:
  2053. - identifier: RRID:SCR_019009
  2054. name: DANDI Command Line Interface
  2055. schemaKey: Software
  2056. url: https://github.com/dandi/dandi-cli
  2057. version: 0.66.7
  2058. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  2059. access:
  2060. - schemaKey: AccessRequirements
  2061. status: dandi:OpenAccess
  2062. blobDateModified: '2022-02-21T15:05:29.491414-05:00'
  2063. contentSize: 234
  2064. contentUrl:
  2065. - https://api.dandiarchive.org/api/assets/1440d8b4-65bb-4416-bde6-885f1c464b7a/download/
  2066. - https://dandiarchive.s3.amazonaws.com/blobs/067/af9/067af976-6c85-4489-9647-6d563b1b8f22
  2067. dateModified: '2025-05-09T14:39:01.894241-04:00'
  2068. datePublished: '2025-05-12T16:26:20.089861+00:00'
  2069. digest:
  2070. dandi:dandi-etag: ea0add2a96e77a0106555e3f9021042a-1
  2071. dandi:sha2-256: 3f65141b0b697dffe5b309294ffff018c025bcc457ff63cfc0a2df448b8a513b
  2072. encodingFormat: application/json
  2073. id: dandiasset:1440d8b4-65bb-4416-bde6-885f1c464b7a
  2074. identifier: 1440d8b4-65bb-4416-bde6-885f1c464b7a
  2075. path: participants.json
  2076. publishedBy:
  2077. endDate: '2025-05-12T16:26:20.089861+00:00'
  2078. id: urn:uuid:cf94edd2-9f52-4900-9686-e941074c50dd
  2079. name: DANDI publish
  2080. schemaKey: PublishActivity
  2081. startDate: '2025-05-12T16:26:20.089861+00:00'
  2082. wasAssociatedWith:
  2083. - id: urn:uuid:d00bf242-15fb-4a58-b60f-5ac6e43b25a7
  2084. identifier: RRID:SCR_017571
  2085. name: DANDI API
  2086. schemaKey: Software
  2087. version: 0.1.0
  2088. schemaKey: Asset
  2089. schemaVersion: 0.6.9
  2090. wasAttributedTo: []
  2091. wasGeneratedBy:
  2092. - description: Metadata generated by DANDI cli
  2093. endDate: '2025-05-09T14:39:01.109826-04:00'
  2094. id: urn:uuid:a7e56c7f-3bed-4d27-be38-ada5fd771230
  2095. name: Metadata generation
  2096. schemaKey: Activity
  2097. startDate: '2025-05-09T14:39:01.109826-04:00'
  2098. wasAssociatedWith:
  2099. - identifier: RRID:SCR_019009
  2100. name: DANDI Command Line Interface
  2101. schemaKey: Software
  2102. url: https://github.com/dandi/dandi-cli
  2103. version: 0.66.7
  2104. - description: Metadata generated by DANDI cli
  2105. endDate: '2025-05-09T14:39:01.894184-04:00'
  2106. id: urn:uuid:0c3528e0-a420-471f-9e37-2d8ff69a99d8
  2107. name: Metadata generation
  2108. schemaKey: Activity
  2109. startDate: '2025-05-09T14:39:01.894184-04:00'
  2110. wasAssociatedWith:
  2111. - identifier: RRID:SCR_019009
  2112. name: DANDI Command Line Interface
  2113. schemaKey: Software
  2114. url: https://github.com/dandi/dandi-cli
  2115. version: 0.66.7
  2116. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  2117. access:
  2118. - schemaKey: AccessRequirements
  2119. status: dandi:OpenAccess
  2120. blobDateModified: '2022-02-21T15:05:29.491414-05:00'
  2121. contentSize: 337
  2122. contentUrl:
  2123. - https://api.dandiarchive.org/api/assets/ba11101a-6885-4f13-ac38-9beeb3085077/download/
  2124. - https://dandiarchive.s3.amazonaws.com/blobs/8db/bff/8dbbff50-b6d7-48dc-8e4c-ec5e7f5f65b2
  2125. dateModified: '2025-05-09T14:39:03.302766-04:00'
  2126. datePublished: '2025-05-12T16:26:20.096180+00:00'
  2127. digest:
  2128. dandi:dandi-etag: e1a5c9c6c29e022e70049fa547ef13c6-1
  2129. dandi:sha2-256: 070f38a93422d6899c1d029beb2ed005324e0f516a5c02a4af3eca415540cf51
  2130. encodingFormat: text/tab-separated-values
  2131. id: dandiasset:ba11101a-6885-4f13-ac38-9beeb3085077
  2132. identifier: ba11101a-6885-4f13-ac38-9beeb3085077
  2133. path: samples.tsv
  2134. publishedBy:
  2135. endDate: '2025-05-12T16:26:20.096180+00:00'
  2136. id: urn:uuid:0ef523a0-49ed-42b5-8c62-b158d582e9ef
  2137. name: DANDI publish
  2138. schemaKey: PublishActivity
  2139. startDate: '2025-05-12T16:26:20.096180+00:00'
  2140. wasAssociatedWith:
  2141. - id: urn:uuid:d75c8734-9bc1-486a-9f77-2873d4d48ddb
  2142. identifier: RRID:SCR_017571
  2143. name: DANDI API
  2144. schemaKey: Software
  2145. version: 0.1.0
  2146. schemaKey: Asset
  2147. schemaVersion: 0.6.9
  2148. wasAttributedTo: []
  2149. wasGeneratedBy:
  2150. - description: Metadata generated by DANDI cli
  2151. endDate: '2025-05-09T14:39:02.751071-04:00'
  2152. id: urn:uuid:f2a0230f-7221-43fe-b936-6b118d1ddbfb
  2153. name: Metadata generation
  2154. schemaKey: Activity
  2155. startDate: '2025-05-09T14:39:02.751071-04:00'
  2156. wasAssociatedWith:
  2157. - identifier: RRID:SCR_019009
  2158. name: DANDI Command Line Interface
  2159. schemaKey: Software
  2160. url: https://github.com/dandi/dandi-cli
  2161. version: 0.66.7
  2162. - description: Metadata generated by DANDI cli
  2163. endDate: '2025-05-09T14:39:03.302709-04:00'
  2164. id: urn:uuid:f4d56103-dddf-47e3-8786-dfc05f95226f
  2165. name: Metadata generation
  2166. schemaKey: Activity
  2167. startDate: '2025-05-09T14:39:03.302709-04:00'
  2168. wasAssociatedWith:
  2169. - identifier: RRID:SCR_019009
  2170. name: DANDI Command Line Interface
  2171. schemaKey: Software
  2172. url: https://github.com/dandi/dandi-cli
  2173. version: 0.66.7
  2174. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  2175. access:
  2176. - schemaKey: AccessRequirements
  2177. status: dandi:OpenAccess
  2178. blobDateModified: '2022-02-21T15:05:29.492414-05:00'
  2179. contentSize: 188
  2180. contentUrl:
  2181. - https://api.dandiarchive.org/api/assets/6ecd4c47-3b30-4c14-9fd8-5526fef0007d/download/
  2182. - https://dandiarchive.s3.amazonaws.com/blobs/e7a/01a/e7a01a79-b9f2-4da4-a271-949a89640294
  2183. dateModified: '2025-05-09T14:39:03.697511-04:00'
  2184. datePublished: '2025-05-12T16:26:20.104445+00:00'
  2185. digest:
  2186. dandi:dandi-etag: fe435a4d3270dede943c5919bd827fe0-1
  2187. dandi:sha2-256: 00ead0ef524ddf06ace91af6505571388bcb2b454a31a6016a0d10a9ff474bab
  2188. encodingFormat: application/json
  2189. id: dandiasset:6ecd4c47-3b30-4c14-9fd8-5526fef0007d
  2190. identifier: 6ecd4c47-3b30-4c14-9fd8-5526fef0007d
  2191. path: sub-rat1/micr/sub-rat1_sample-data1_SEM.json
  2192. publishedBy:
  2193. endDate: '2025-05-12T16:26:20.104445+00:00'
  2194. id: urn:uuid:e6c716f7-dd1a-4e20-b9b9-bfde4fcc0984
  2195. name: DANDI publish
  2196. schemaKey: PublishActivity
  2197. startDate: '2025-05-12T16:26:20.104445+00:00'
  2198. wasAssociatedWith:
  2199. - id: urn:uuid:3f3143eb-14a4-4158-8e9f-0f3e785f3f27
  2200. identifier: RRID:SCR_017571
  2201. name: DANDI API
  2202. schemaKey: Software
  2203. version: 0.1.0
  2204. schemaKey: Asset
  2205. schemaVersion: 0.6.9
  2206. wasAttributedTo:
  2207. - identifier: rat1
  2208. schemaKey: Participant
  2209. wasGeneratedBy:
  2210. - description: Metadata generated by DANDI cli
  2211. endDate: '2025-05-09T14:39:03.148345-04:00'
  2212. id: urn:uuid:dae48270-c381-4e8b-bbce-e7c90b3b9ec5
  2213. name: Metadata generation
  2214. schemaKey: Activity
  2215. startDate: '2025-05-09T14:39:03.148345-04:00'
  2216. wasAssociatedWith:
  2217. - identifier: RRID:SCR_019009
  2218. name: DANDI Command Line Interface
  2219. schemaKey: Software
  2220. url: https://github.com/dandi/dandi-cli
  2221. version: 0.66.7
  2222. - description: Metadata generated by DANDI cli
  2223. endDate: '2025-05-09T14:39:03.697454-04:00'
  2224. id: urn:uuid:012c18fd-4eeb-4593-9ad2-2d44d7f770ab
  2225. name: Metadata generation
  2226. schemaKey: Activity
  2227. startDate: '2025-05-09T14:39:03.697454-04:00'
  2228. wasAssociatedWith:
  2229. - identifier: RRID:SCR_019009
  2230. name: DANDI Command Line Interface
  2231. schemaKey: Software
  2232. url: https://github.com/dandi/dandi-cli
  2233. version: 0.66.7
  2234. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  2235. access:
  2236. - schemaKey: AccessRequirements
  2237. status: dandi:OpenAccess
  2238. blobDateModified: '2022-02-21T15:05:29.496414-05:00'
  2239. contentSize: 190
  2240. contentUrl:
  2241. - https://api.dandiarchive.org/api/assets/0c48abf0-eea2-488a-8233-85ce9933d1f6/download/
  2242. - https://dandiarchive.s3.amazonaws.com/blobs/819/a14/819a145f-1c78-4788-bc5e-853b0a89c5d4
  2243. dateModified: '2025-05-09T14:39:04.531580-04:00'
  2244. datePublished: '2025-05-12T16:26:20.112598+00:00'
  2245. digest:
  2246. dandi:dandi-etag: 530d10e09cf4cb8359b6b7f900d73875-1
  2247. dandi:sha2-256: 88fa83952631153214e16a90c13e9aafae571a1624c61011781bf4dcb9a8ebeb
  2248. encodingFormat: application/json
  2249. id: dandiasset:0c48abf0-eea2-488a-8233-85ce9933d1f6
  2250. identifier: 0c48abf0-eea2-488a-8233-85ce9933d1f6
  2251. path: sub-rat2/micr/sub-rat2_sample-data5_SEM.json
  2252. publishedBy:
  2253. endDate: '2025-05-12T16:26:20.112598+00:00'
  2254. id: urn:uuid:57eec4a2-9d52-4822-a643-206fcc8b6475
  2255. name: DANDI publish
  2256. schemaKey: PublishActivity
  2257. startDate: '2025-05-12T16:26:20.112598+00:00'
  2258. wasAssociatedWith:
  2259. - id: urn:uuid:6afb975c-570c-4ce3-9a1d-0c3c163e4bae
  2260. identifier: RRID:SCR_017571
  2261. name: DANDI API
  2262. schemaKey: Software
  2263. version: 0.1.0
  2264. schemaKey: Asset
  2265. schemaVersion: 0.6.9
  2266. wasAttributedTo:
  2267. - identifier: rat2
  2268. schemaKey: Participant
  2269. wasGeneratedBy:
  2270. - description: Metadata generated by DANDI cli
  2271. endDate: '2025-05-09T14:39:03.958175-04:00'
  2272. id: urn:uuid:e008a7cf-d800-4d0f-8e9c-10825cccd145
  2273. name: Metadata generation
  2274. schemaKey: Activity
  2275. startDate: '2025-05-09T14:39:03.958175-04:00'
  2276. wasAssociatedWith:
  2277. - identifier: RRID:SCR_019009
  2278. name: DANDI Command Line Interface
  2279. schemaKey: Software
  2280. url: https://github.com/dandi/dandi-cli
  2281. version: 0.66.7
  2282. - description: Metadata generated by DANDI cli
  2283. endDate: '2025-05-09T14:39:04.531487-04:00'
  2284. id: urn:uuid:2f7b865e-9140-4323-9fb7-b013fcd9a2c9
  2285. name: Metadata generation
  2286. schemaKey: Activity
  2287. startDate: '2025-05-09T14:39:04.531487-04:00'
  2288. wasAssociatedWith:
  2289. - identifier: RRID:SCR_019009
  2290. name: DANDI Command Line Interface
  2291. schemaKey: Software
  2292. url: https://github.com/dandi/dandi-cli
  2293. version: 0.66.7
  2294. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  2295. access:
  2296. - schemaKey: AccessRequirements
  2297. status: dandi:OpenAccess
  2298. blobDateModified: '2022-02-21T15:05:29.496414-05:00'
  2299. contentSize: 1004958
  2300. contentUrl:
  2301. - https://api.dandiarchive.org/api/assets/58df35cc-7f81-49d6-8f2a-db830e748520/download/
  2302. - https://dandiarchive.s3.amazonaws.com/blobs/6f7/7cd/6f77cdcb-e81b-4113-87cb-9f231da64ddb
  2303. dateModified: '2025-05-09T14:39:04.265157-04:00'
  2304. datePublished: '2025-05-12T16:26:20.120209+00:00'
  2305. digest:
  2306. dandi:dandi-etag: 3f1eda21d546981772e2368aec8b129e-1
  2307. dandi:sha2-256: c93a2cfc720984f8d32827d765bfbee9e5d0b23240774a93373a2c05c8abe342
  2308. encodingFormat: image/png
  2309. id: dandiasset:58df35cc-7f81-49d6-8f2a-db830e748520
  2310. identifier: 58df35cc-7f81-49d6-8f2a-db830e748520
  2311. path: sub-rat1/micr/sub-rat1_sample-data1_SEM.png
  2312. publishedBy:
  2313. endDate: '2025-05-12T16:26:20.120209+00:00'
  2314. id: urn:uuid:50b7943a-7102-43f2-9e4c-53bd6e3d0d99
  2315. name: DANDI publish
  2316. schemaKey: PublishActivity
  2317. startDate: '2025-05-12T16:26:20.120209+00:00'
  2318. wasAssociatedWith:
  2319. - id: urn:uuid:293251ae-4a84-40fd-a36a-54e87b83860f
  2320. identifier: RRID:SCR_017571
  2321. name: DANDI API
  2322. schemaKey: Software
  2323. version: 0.1.0
  2324. schemaKey: Asset
  2325. schemaVersion: 0.6.9
  2326. wasAttributedTo:
  2327. - identifier: rat1
  2328. schemaKey: Participant
  2329. wasGeneratedBy:
  2330. - description: Metadata generated by DANDI cli
  2331. endDate: '2025-05-09T14:39:03.551589-04:00'
  2332. id: urn:uuid:b70af62f-2da3-4cd6-b8e3-46cb9ac3b707
  2333. name: Metadata generation
  2334. schemaKey: Activity
  2335. startDate: '2025-05-09T14:39:03.551589-04:00'
  2336. wasAssociatedWith:
  2337. - identifier: RRID:SCR_019009
  2338. name: DANDI Command Line Interface
  2339. schemaKey: Software
  2340. url: https://github.com/dandi/dandi-cli
  2341. version: 0.66.7
  2342. - description: Metadata generated by DANDI cli
  2343. endDate: '2025-05-09T14:39:04.265095-04:00'
  2344. id: urn:uuid:8eb121f0-8505-4b30-a4f9-938897e5a15e
  2345. name: Metadata generation
  2346. schemaKey: Activity
  2347. startDate: '2025-05-09T14:39:04.265095-04:00'
  2348. wasAssociatedWith:
  2349. - identifier: RRID:SCR_019009
  2350. name: DANDI Command Line Interface
  2351. schemaKey: Software
  2352. url: https://github.com/dandi/dandi-cli
  2353. version: 0.66.7
  2354. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  2355. access:
  2356. - schemaKey: AccessRequirements
  2357. status: dandi:OpenAccess
  2358. blobDateModified: '2022-02-21T15:05:29.500414-05:00'
  2359. contentSize: 926903
  2360. contentUrl:
  2361. - https://api.dandiarchive.org/api/assets/48fe2f23-d088-4350-8ba1-5d8f75cc51bc/download/
  2362. - https://dandiarchive.s3.amazonaws.com/blobs/054/0fb/0540fb35-0142-4120-9b81-347439c837dc
  2363. dateModified: '2025-05-09T14:39:04.668524-04:00'
  2364. datePublished: '2025-05-12T16:26:20.128829+00:00'
  2365. digest:
  2366. dandi:dandi-etag: 5b6b03948809b3fca20f8fb2325d2a25-1
  2367. dandi:sha2-256: e878e6d412e0a674a67f57f983a97eac70edc41e04ab222ef4338d2653377a95
  2368. encodingFormat: image/png
  2369. id: dandiasset:48fe2f23-d088-4350-8ba1-5d8f75cc51bc
  2370. identifier: 48fe2f23-d088-4350-8ba1-5d8f75cc51bc
  2371. path: sub-rat2/micr/sub-rat2_sample-data5_SEM.png
  2372. publishedBy:
  2373. endDate: '2025-05-12T16:26:20.128829+00:00'
  2374. id: urn:uuid:b9e8ad38-bb62-4f0c-ba59-963c5fd0bd69
  2375. name: DANDI publish
  2376. schemaKey: PublishActivity
  2377. startDate: '2025-05-12T16:26:20.128829+00:00'
  2378. wasAssociatedWith:
  2379. - id: urn:uuid:440c2113-e644-4be0-85bf-788087a1f7aa
  2380. identifier: RRID:SCR_017571
  2381. name: DANDI API
  2382. schemaKey: Software
  2383. version: 0.1.0
  2384. schemaKey: Asset
  2385. schemaVersion: 0.6.9
  2386. wasAttributedTo:
  2387. - identifier: rat2
  2388. schemaKey: Participant
  2389. wasGeneratedBy:
  2390. - description: Metadata generated by DANDI cli
  2391. endDate: '2025-05-09T14:39:04.110248-04:00'
  2392. id: urn:uuid:beb6bc18-7685-4394-8da3-b06a23fca0b2
  2393. name: Metadata generation
  2394. schemaKey: Activity
  2395. startDate: '2025-05-09T14:39:04.110248-04:00'
  2396. wasAssociatedWith:
  2397. - identifier: RRID:SCR_019009
  2398. name: DANDI Command Line Interface
  2399. schemaKey: Software
  2400. url: https://github.com/dandi/dandi-cli
  2401. version: 0.66.7
  2402. - description: Metadata generated by DANDI cli
  2403. endDate: '2025-05-09T14:39:04.668468-04:00'
  2404. id: urn:uuid:55e7d5d5-1df6-4314-95f2-7abfbcaa3710
  2405. name: Metadata generation
  2406. schemaKey: Activity
  2407. startDate: '2025-05-09T14:39:04.668468-04:00'
  2408. wasAssociatedWith:
  2409. - identifier: RRID:SCR_019009
  2410. name: DANDI Command Line Interface
  2411. schemaKey: Software
  2412. url: https://github.com/dandi/dandi-cli
  2413. version: 0.66.7
  2414. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  2415. access:
  2416. - schemaKey: AccessRequirements
  2417. status: dandi:OpenAccess
  2418. blobDateModified: '2022-02-21T15:05:29.500414-05:00'
  2419. contentSize: 186
  2420. contentUrl:
  2421. - https://api.dandiarchive.org/api/assets/97f04666-d6ea-4e41-976b-c62c43fddf04/download/
  2422. - https://dandiarchive.s3.amazonaws.com/blobs/016/cb0/016cb0d7-3991-417d-a089-76f2a5446670
  2423. dateModified: '2025-05-09T14:39:05.316114-04:00'
  2424. datePublished: '2025-05-12T16:26:20.137634+00:00'
  2425. digest:
  2426. dandi:dandi-etag: 4a3bc308793f37d0b83d6a386a945d8c-1
  2427. dandi:sha2-256: 93e427a28c6eccf9f83ba67e4858d2a9a19318238ead62f714fb4a05fb440b9f
  2428. encodingFormat: application/json
  2429. id: dandiasset:97f04666-d6ea-4e41-976b-c62c43fddf04
  2430. identifier: 97f04666-d6ea-4e41-976b-c62c43fddf04
  2431. path: sub-rat3/micr/sub-rat3_SEM.json
  2432. publishedBy:
  2433. endDate: '2025-05-12T16:26:20.137634+00:00'
  2434. id: urn:uuid:7f7cb719-3c97-49e4-9094-599f575fbb22
  2435. name: DANDI publish
  2436. schemaKey: PublishActivity
  2437. startDate: '2025-05-12T16:26:20.137634+00:00'
  2438. wasAssociatedWith:
  2439. - id: urn:uuid:e1d9d465-7c04-4d10-9ca8-ebd52df9f46a
  2440. identifier: RRID:SCR_017571
  2441. name: DANDI API
  2442. schemaKey: Software
  2443. version: 0.1.0
  2444. schemaKey: Asset
  2445. schemaVersion: 0.6.9
  2446. wasAttributedTo:
  2447. - identifier: rat3
  2448. schemaKey: Participant
  2449. wasGeneratedBy:
  2450. - description: Metadata generated by DANDI cli
  2451. endDate: '2025-05-09T14:39:05.102982-04:00'
  2452. id: urn:uuid:421c4442-4d4c-4d0f-938e-d726b475310a
  2453. name: Metadata generation
  2454. schemaKey: Activity
  2455. startDate: '2025-05-09T14:39:05.102982-04:00'
  2456. wasAssociatedWith:
  2457. - identifier: RRID:SCR_019009
  2458. name: DANDI Command Line Interface
  2459. schemaKey: Software
  2460. url: https://github.com/dandi/dandi-cli
  2461. version: 0.66.7
  2462. - description: Metadata generated by DANDI cli
  2463. endDate: '2025-05-09T14:39:05.316055-04:00'
  2464. id: urn:uuid:984f7382-5f1c-4baa-9353-0dab8a727aa6
  2465. name: Metadata generation
  2466. schemaKey: Activity
  2467. startDate: '2025-05-09T14:39:05.316055-04:00'
  2468. wasAssociatedWith:
  2469. - identifier: RRID:SCR_019009
  2470. name: DANDI Command Line Interface
  2471. schemaKey: Software
  2472. url: https://github.com/dandi/dandi-cli
  2473. version: 0.66.7
  2474. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  2475. access:
  2476. - schemaKey: AccessRequirements
  2477. status: dandi:OpenAccess
  2478. blobDateModified: '2022-02-21T15:05:29.502414-05:00'
  2479. contentSize: 407415
  2480. contentUrl:
  2481. - https://api.dandiarchive.org/api/assets/ff17b5c5-525a-4cfa-b5ba-ae5c5ef8f787/download/
  2482. - https://dandiarchive.s3.amazonaws.com/blobs/f39/c92/f39c9227-e94a-46f0-b95a-4cf46224e4d5
  2483. dateModified: '2025-05-09T14:39:05.885665-04:00'
  2484. datePublished: '2025-05-12T16:26:20.145952+00:00'
  2485. digest:
  2486. dandi:dandi-etag: cb8b1676c47967e047cc34e41db4413d-1
  2487. dandi:sha2-256: d402873851fa675b0bbaeff8ab752e92e0b8159834f416c4428f78a15883f5ce
  2488. encodingFormat: image/png
  2489. id: dandiasset:ff17b5c5-525a-4cfa-b5ba-ae5c5ef8f787
  2490. identifier: ff17b5c5-525a-4cfa-b5ba-ae5c5ef8f787
  2491. path: sub-rat3/micr/sub-rat3_sample-data10_SEM.png
  2492. publishedBy:
  2493. endDate: '2025-05-12T16:26:20.145952+00:00'
  2494. id: urn:uuid:6997f7cf-265a-4d01-ad4f-baf665a19ddf
  2495. name: DANDI publish
  2496. schemaKey: PublishActivity
  2497. startDate: '2025-05-12T16:26:20.145952+00:00'
  2498. wasAssociatedWith:
  2499. - id: urn:uuid:0e58ce49-e00e-4b87-b21b-3846cbbf1a3f
  2500. identifier: RRID:SCR_017571
  2501. name: DANDI API
  2502. schemaKey: Software
  2503. version: 0.1.0
  2504. schemaKey: Asset
  2505. schemaVersion: 0.6.9
  2506. wasAttributedTo:
  2507. - identifier: rat3
  2508. schemaKey: Participant
  2509. wasGeneratedBy:
  2510. - description: Metadata generated by DANDI cli
  2511. endDate: '2025-05-09T14:39:05.541100-04:00'
  2512. id: urn:uuid:83f93a90-b243-4558-a21c-8d690a975b16
  2513. name: Metadata generation
  2514. schemaKey: Activity
  2515. startDate: '2025-05-09T14:39:05.541100-04:00'
  2516. wasAssociatedWith:
  2517. - identifier: RRID:SCR_019009
  2518. name: DANDI Command Line Interface
  2519. schemaKey: Software
  2520. url: https://github.com/dandi/dandi-cli
  2521. version: 0.66.7
  2522. - description: Metadata generated by DANDI cli
  2523. endDate: '2025-05-09T14:39:05.885584-04:00'
  2524. id: urn:uuid:2934ede4-0a6d-4731-a00f-4915391e9696
  2525. name: Metadata generation
  2526. schemaKey: Activity
  2527. startDate: '2025-05-09T14:39:05.885584-04:00'
  2528. wasAssociatedWith:
  2529. - identifier: RRID:SCR_019009
  2530. name: DANDI Command Line Interface
  2531. schemaKey: Software
  2532. url: https://github.com/dandi/dandi-cli
  2533. version: 0.66.7
  2534. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  2535. access:
  2536. - schemaKey: AccessRequirements
  2537. status: dandi:OpenAccess
  2538. blobDateModified: '2022-02-21T15:05:29.505414-05:00'
  2539. contentSize: 186
  2540. contentUrl:
  2541. - https://api.dandiarchive.org/api/assets/f5840023-73aa-48c5-b2b8-9d0f8e0956d8/download/
  2542. - https://dandiarchive.s3.amazonaws.com/blobs/016/cb0/016cb0d7-3991-417d-a089-76f2a5446670
  2543. dateModified: '2025-05-09T14:39:07.271210-04:00'
  2544. datePublished: '2025-05-12T16:26:20.154454+00:00'
  2545. digest:
  2546. dandi:dandi-etag: 4a3bc308793f37d0b83d6a386a945d8c-1
  2547. dandi:sha2-256: 93e427a28c6eccf9f83ba67e4858d2a9a19318238ead62f714fb4a05fb440b9f
  2548. encodingFormat: application/json
  2549. id: dandiasset:f5840023-73aa-48c5-b2b8-9d0f8e0956d8
  2550. identifier: f5840023-73aa-48c5-b2b8-9d0f8e0956d8
  2551. path: sub-rat4/micr/sub-rat4_sample-data12_SEM.json
  2552. publishedBy:
  2553. endDate: '2025-05-12T16:26:20.154454+00:00'
  2554. id: urn:uuid:ef7817ee-5e28-4897-b931-a5ad1fd204d0
  2555. name: DANDI publish
  2556. schemaKey: PublishActivity
  2557. startDate: '2025-05-12T16:26:20.154454+00:00'
  2558. wasAssociatedWith:
  2559. - id: urn:uuid:eec41881-ebf8-483e-9f1e-5c8a1ee6699d
  2560. identifier: RRID:SCR_017571
  2561. name: DANDI API
  2562. schemaKey: Software
  2563. version: 0.1.0
  2564. schemaKey: Asset
  2565. schemaVersion: 0.6.9
  2566. wasAttributedTo:
  2567. - identifier: rat4
  2568. schemaKey: Participant
  2569. wasGeneratedBy:
  2570. - description: Metadata generated by DANDI cli
  2571. endDate: '2025-05-09T14:39:06.668399-04:00'
  2572. id: urn:uuid:b7b2b719-2987-4c6e-9d9a-95d58475fdb4
  2573. name: Metadata generation
  2574. schemaKey: Activity
  2575. startDate: '2025-05-09T14:39:06.668399-04:00'
  2576. wasAssociatedWith:
  2577. - identifier: RRID:SCR_019009
  2578. name: DANDI Command Line Interface
  2579. schemaKey: Software
  2580. url: https://github.com/dandi/dandi-cli
  2581. version: 0.66.7
  2582. - description: Metadata generated by DANDI cli
  2583. endDate: '2025-05-09T14:39:07.271138-04:00'
  2584. id: urn:uuid:b8c5cd14-a153-4c9b-9725-1f8afe36bcc6
  2585. name: Metadata generation
  2586. schemaKey: Activity
  2587. startDate: '2025-05-09T14:39:07.271138-04:00'
  2588. wasAssociatedWith:
  2589. - identifier: RRID:SCR_019009
  2590. name: DANDI Command Line Interface
  2591. schemaKey: Software
  2592. url: https://github.com/dandi/dandi-cli
  2593. version: 0.66.7
  2594. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  2595. access:
  2596. - schemaKey: AccessRequirements
  2597. status: dandi:OpenAccess
  2598. blobDateModified: '2022-02-21T15:05:29.503414-05:00'
  2599. contentSize: 418019
  2600. contentUrl:
  2601. - https://api.dandiarchive.org/api/assets/2f850919-e375-4c30-a146-03cf9f6f7a76/download/
  2602. - https://dandiarchive.s3.amazonaws.com/blobs/1ef/af4/1efaf4dc-80f3-49be-aaf6-3c289f320a8b
  2603. dateModified: '2025-05-09T14:39:06.776256-04:00'
  2604. datePublished: '2025-05-12T16:26:20.166875+00:00'
  2605. digest:
  2606. dandi:dandi-etag: d87f84d39cfef747a5c60cce564a7421-1
  2607. dandi:sha2-256: a3fac42bb940fe20371167bc64bae94e47f8551dd699357122c161b39d9fa9e1
  2608. encodingFormat: image/png
  2609. id: dandiasset:2f850919-e375-4c30-a146-03cf9f6f7a76
  2610. identifier: 2f850919-e375-4c30-a146-03cf9f6f7a76
  2611. path: sub-rat3/micr/sub-rat3_sample-data11_SEM.png
  2612. publishedBy:
  2613. endDate: '2025-05-12T16:26:20.166875+00:00'
  2614. id: urn:uuid:1a617240-0fe2-4d6b-9f46-da95bc5fd24e
  2615. name: DANDI publish
  2616. schemaKey: PublishActivity
  2617. startDate: '2025-05-12T16:26:20.166875+00:00'
  2618. wasAssociatedWith:
  2619. - id: urn:uuid:987ab287-1044-4107-a7ec-e0cce6962ac0
  2620. identifier: RRID:SCR_017571
  2621. name: DANDI API
  2622. schemaKey: Software
  2623. version: 0.1.0
  2624. schemaKey: Asset
  2625. schemaVersion: 0.6.9
  2626. wasAttributedTo:
  2627. - identifier: rat3
  2628. schemaKey: Participant
  2629. wasGeneratedBy:
  2630. - description: Metadata generated by DANDI cli
  2631. endDate: '2025-05-09T14:39:06.045365-04:00'
  2632. id: urn:uuid:bd94a2e1-40e7-4856-8338-62eba67d8afb
  2633. name: Metadata generation
  2634. schemaKey: Activity
  2635. startDate: '2025-05-09T14:39:06.045365-04:00'
  2636. wasAssociatedWith:
  2637. - identifier: RRID:SCR_019009
  2638. name: DANDI Command Line Interface
  2639. schemaKey: Software
  2640. url: https://github.com/dandi/dandi-cli
  2641. version: 0.66.7
  2642. - description: Metadata generated by DANDI cli
  2643. endDate: '2025-05-09T14:39:06.776198-04:00'
  2644. id: urn:uuid:f02b5b25-b036-45b0-a055-a9a57108c854
  2645. name: Metadata generation
  2646. schemaKey: Activity
  2647. startDate: '2025-05-09T14:39:06.776198-04:00'
  2648. wasAssociatedWith:
  2649. - identifier: RRID:SCR_019009
  2650. name: DANDI Command Line Interface
  2651. schemaKey: Software
  2652. url: https://github.com/dandi/dandi-cli
  2653. version: 0.66.7
  2654. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  2655. access:
  2656. - schemaKey: AccessRequirements
  2657. status: dandi:OpenAccess
  2658. blobDateModified: '2022-02-21T15:05:29.505414-05:00'
  2659. contentSize: 391749
  2660. contentUrl:
  2661. - https://api.dandiarchive.org/api/assets/91fbd4e2-fc6f-4087-aee0-d00118c524ef/download/
  2662. - https://dandiarchive.s3.amazonaws.com/blobs/31b/abd/31babdd9-871e-43b3-8e2b-9546c9f90f87
  2663. dateModified: '2025-05-09T14:39:07.176511-04:00'
  2664. datePublished: '2025-05-12T16:26:20.174637+00:00'
  2665. digest:
  2666. dandi:dandi-etag: d4226480c385980f87b76d816bbf8518-1
  2667. dandi:sha2-256: 067af38d7f98cb7eef988d38c8821af7dc33c73146e79eeff66dc9349a336c47
  2668. encodingFormat: image/png
  2669. id: dandiasset:91fbd4e2-fc6f-4087-aee0-d00118c524ef
  2670. identifier: 91fbd4e2-fc6f-4087-aee0-d00118c524ef
  2671. path: sub-rat3/micr/sub-rat3_sample-data9_SEM.png
  2672. publishedBy:
  2673. endDate: '2025-05-12T16:26:20.174637+00:00'
  2674. id: urn:uuid:530e7164-6c10-42c0-a03d-8ba09484db52
  2675. name: DANDI publish
  2676. schemaKey: PublishActivity
  2677. startDate: '2025-05-12T16:26:20.174637+00:00'
  2678. wasAssociatedWith:
  2679. - id: urn:uuid:0db6f1af-0fee-4738-bdf1-755103bc0461
  2680. identifier: RRID:SCR_017571
  2681. name: DANDI API
  2682. schemaKey: Software
  2683. version: 0.1.0
  2684. schemaKey: Asset
  2685. schemaVersion: 0.6.9
  2686. wasAttributedTo:
  2687. - identifier: rat3
  2688. schemaKey: Participant
  2689. wasGeneratedBy:
  2690. - description: Metadata generated by DANDI cli
  2691. endDate: '2025-05-09T14:39:06.519360-04:00'
  2692. id: urn:uuid:d2604cd1-1e02-4669-bf00-84f22f56cb39
  2693. name: Metadata generation
  2694. schemaKey: Activity
  2695. startDate: '2025-05-09T14:39:06.519360-04:00'
  2696. wasAssociatedWith:
  2697. - identifier: RRID:SCR_019009
  2698. name: DANDI Command Line Interface
  2699. schemaKey: Software
  2700. url: https://github.com/dandi/dandi-cli
  2701. version: 0.66.7
  2702. - description: Metadata generated by DANDI cli
  2703. endDate: '2025-05-09T14:39:07.176430-04:00'
  2704. id: urn:uuid:0bcc8fe2-966c-48d9-9953-9681f7e7db2d
  2705. name: Metadata generation
  2706. schemaKey: Activity
  2707. startDate: '2025-05-09T14:39:07.176430-04:00'
  2708. wasAssociatedWith:
  2709. - identifier: RRID:SCR_019009
  2710. name: DANDI Command Line Interface
  2711. schemaKey: Software
  2712. url: https://github.com/dandi/dandi-cli
  2713. version: 0.66.7
  2714. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  2715. access:
  2716. - schemaKey: AccessRequirements
  2717. status: dandi:OpenAccess
  2718. blobDateModified: '2022-02-21T15:05:29.507414-05:00'
  2719. contentSize: 480267
  2720. contentUrl:
  2721. - https://api.dandiarchive.org/api/assets/91fc5f02-d3b8-4ab6-90f3-f72204079096/download/
  2722. - https://dandiarchive.s3.amazonaws.com/blobs/6c6/a28/6c6a2881-8d47-4d14-86f9-4d5199a976e1
  2723. dateModified: '2025-05-09T14:39:07.693489-04:00'
  2724. datePublished: '2025-05-12T16:26:20.181902+00:00'
  2725. digest:
  2726. dandi:dandi-etag: 6dee764910a298af3c4cf3bc5462d498-1
  2727. dandi:sha2-256: d121f05fe9f03458b4dd9a9e4f0fdeba64e5cbd97ec4584415931144e012b764
  2728. encodingFormat: image/png
  2729. id: dandiasset:91fc5f02-d3b8-4ab6-90f3-f72204079096
  2730. identifier: 91fc5f02-d3b8-4ab6-90f3-f72204079096
  2731. path: sub-rat4/micr/sub-rat4_sample-data12_SEM.png
  2732. publishedBy:
  2733. endDate: '2025-05-12T16:26:20.181902+00:00'
  2734. id: urn:uuid:5c15e9dc-8523-4b4b-9dca-f59b631c5c82
  2735. name: DANDI publish
  2736. schemaKey: PublishActivity
  2737. startDate: '2025-05-12T16:26:20.181902+00:00'
  2738. wasAssociatedWith:
  2739. - id: urn:uuid:04d9ca94-9fb3-430a-b735-63d529a7cd6d
  2740. identifier: RRID:SCR_017571
  2741. name: DANDI API
  2742. schemaKey: Software
  2743. version: 0.1.0
  2744. schemaKey: Asset
  2745. schemaVersion: 0.6.9
  2746. wasAttributedTo:
  2747. - identifier: rat4
  2748. schemaKey: Participant
  2749. wasGeneratedBy:
  2750. - description: Metadata generated by DANDI cli
  2751. endDate: '2025-05-09T14:39:07.212048-04:00'
  2752. id: urn:uuid:6c1d105f-f685-47dc-90b4-e074c870e44b
  2753. name: Metadata generation
  2754. schemaKey: Activity
  2755. startDate: '2025-05-09T14:39:07.212048-04:00'
  2756. wasAssociatedWith:
  2757. - identifier: RRID:SCR_019009
  2758. name: DANDI Command Line Interface
  2759. schemaKey: Software
  2760. url: https://github.com/dandi/dandi-cli
  2761. version: 0.66.7
  2762. - description: Metadata generated by DANDI cli
  2763. endDate: '2025-05-09T14:39:07.693413-04:00'
  2764. id: urn:uuid:1ae2ce15-b41e-4756-8d3a-d27f9e473cde
  2765. name: Metadata generation
  2766. schemaKey: Activity
  2767. startDate: '2025-05-09T14:39:07.693413-04:00'
  2768. wasAssociatedWith:
  2769. - identifier: RRID:SCR_019009
  2770. name: DANDI Command Line Interface
  2771. schemaKey: Software
  2772. url: https://github.com/dandi/dandi-cli
  2773. version: 0.66.7
  2774. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  2775. access:
  2776. - schemaKey: AccessRequirements
  2777. status: dandi:OpenAccess
  2778. blobDateModified: '2022-02-21T15:05:29.507414-05:00'
  2779. contentSize: 188
  2780. contentUrl:
  2781. - https://api.dandiarchive.org/api/assets/5bf07985-ff90-4eaa-af04-3dd6c19afc13/download/
  2782. - https://dandiarchive.s3.amazonaws.com/blobs/944/052/9440526c-2330-43fc-8617-e91c3e681c12
  2783. dateModified: '2025-05-09T14:39:08.438983-04:00'
  2784. datePublished: '2025-05-12T16:26:20.189325+00:00'
  2785. digest:
  2786. dandi:dandi-etag: cbe4c08ed98050906c48dcfda5bdeb21-1
  2787. dandi:sha2-256: 52774fdd6f346b4ab6c1627eab9e1c7555dfa37bc585317034d870e66b893710
  2788. encodingFormat: application/json
  2789. id: dandiasset:5bf07985-ff90-4eaa-af04-3dd6c19afc13
  2790. identifier: 5bf07985-ff90-4eaa-af04-3dd6c19afc13
  2791. path: sub-rat5/micr/sub-rat5_sample-data14_SEM.json
  2792. publishedBy:
  2793. endDate: '2025-05-12T16:26:20.189325+00:00'
  2794. id: urn:uuid:3e075618-d7b3-426c-8920-32d6930fb4d0
  2795. name: DANDI publish
  2796. schemaKey: PublishActivity
  2797. startDate: '2025-05-12T16:26:20.189325+00:00'
  2798. wasAssociatedWith:
  2799. - id: urn:uuid:bc75cca1-18a5-42af-8a8e-138456a26a78
  2800. identifier: RRID:SCR_017571
  2801. name: DANDI API
  2802. schemaKey: Software
  2803. version: 0.1.0
  2804. schemaKey: Asset
  2805. schemaVersion: 0.6.9
  2806. wasAttributedTo:
  2807. - identifier: rat5
  2808. schemaKey: Participant
  2809. wasGeneratedBy:
  2810. - description: Metadata generated by DANDI cli
  2811. endDate: '2025-05-09T14:39:07.995584-04:00'
  2812. id: urn:uuid:2e5cc29c-5e72-4111-a6cf-17a49923a235
  2813. name: Metadata generation
  2814. schemaKey: Activity
  2815. startDate: '2025-05-09T14:39:07.995584-04:00'
  2816. wasAssociatedWith:
  2817. - identifier: RRID:SCR_019009
  2818. name: DANDI Command Line Interface
  2819. schemaKey: Software
  2820. url: https://github.com/dandi/dandi-cli
  2821. version: 0.66.7
  2822. - description: Metadata generated by DANDI cli
  2823. endDate: '2025-05-09T14:39:08.438874-04:00'
  2824. id: urn:uuid:78e6a807-c2e7-4cf3-8894-54f290d79675
  2825. name: Metadata generation
  2826. schemaKey: Activity
  2827. startDate: '2025-05-09T14:39:08.438874-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.66.7
  2834. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  2835. access:
  2836. - schemaKey: AccessRequirements
  2837. status: dandi:OpenAccess
  2838. blobDateModified: '2022-02-21T15:05:29.518414-05:00'
  2839. contentSize: 188
  2840. contentUrl:
  2841. - https://api.dandiarchive.org/api/assets/9a3eddc1-716d-48d2-a88b-929930c95641/download/
  2842. - https://dandiarchive.s3.amazonaws.com/blobs/944/052/9440526c-2330-43fc-8617-e91c3e681c12
  2843. dateModified: '2025-05-09T14:39:09.349105-04:00'
  2844. datePublished: '2025-05-12T16:26:20.196864+00:00'
  2845. digest:
  2846. dandi:dandi-etag: cbe4c08ed98050906c48dcfda5bdeb21-1
  2847. dandi:sha2-256: 52774fdd6f346b4ab6c1627eab9e1c7555dfa37bc585317034d870e66b893710
  2848. encodingFormat: application/json
  2849. id: dandiasset:9a3eddc1-716d-48d2-a88b-929930c95641
  2850. identifier: 9a3eddc1-716d-48d2-a88b-929930c95641
  2851. path: sub-rat6/micr/sub-rat6_sample-data15_SEM.json
  2852. publishedBy:
  2853. endDate: '2025-05-12T16:26:20.196864+00:00'
  2854. id: urn:uuid:514ef0e4-ea54-41ae-9bcb-9c3dc900f3f8
  2855. name: DANDI publish
  2856. schemaKey: PublishActivity
  2857. startDate: '2025-05-12T16:26:20.196864+00:00'
  2858. wasAssociatedWith:
  2859. - id: urn:uuid:ee07852a-c4a4-4c30-90b1-9b3ddf814ef8
  2860. identifier: RRID:SCR_017571
  2861. name: DANDI API
  2862. schemaKey: Software
  2863. version: 0.1.0
  2864. schemaKey: Asset
  2865. schemaVersion: 0.6.9
  2866. wasAttributedTo:
  2867. - identifier: rat6
  2868. schemaKey: Participant
  2869. wasGeneratedBy:
  2870. - description: Metadata generated by DANDI cli
  2871. endDate: '2025-05-09T14:39:08.856073-04:00'
  2872. id: urn:uuid:eb25d73e-da04-4bee-a697-cf01de1dd32a
  2873. name: Metadata generation
  2874. schemaKey: Activity
  2875. startDate: '2025-05-09T14:39:08.856073-04:00'
  2876. wasAssociatedWith:
  2877. - identifier: RRID:SCR_019009
  2878. name: DANDI Command Line Interface
  2879. schemaKey: Software
  2880. url: https://github.com/dandi/dandi-cli
  2881. version: 0.66.7
  2882. - description: Metadata generated by DANDI cli
  2883. endDate: '2025-05-09T14:39:09.349031-04:00'
  2884. id: urn:uuid:24b19679-9116-4465-8911-53326a8bdf20
  2885. name: Metadata generation
  2886. schemaKey: Activity
  2887. startDate: '2025-05-09T14:39:09.349031-04:00'
  2888. wasAssociatedWith:
  2889. - identifier: RRID:SCR_019009
  2890. name: DANDI Command Line Interface
  2891. schemaKey: Software
  2892. url: https://github.com/dandi/dandi-cli
  2893. version: 0.66.7
  2894. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  2895. access:
  2896. - schemaKey: AccessRequirements
  2897. status: dandi:OpenAccess
  2898. blobDateModified: '2022-02-21T15:05:29.517414-05:00'
  2899. contentSize: 2434671
  2900. contentUrl:
  2901. - https://api.dandiarchive.org/api/assets/b5e62ef9-9b06-425c-8027-b8b9dc48e28d/download/
  2902. - https://dandiarchive.s3.amazonaws.com/blobs/a49/5c9/a495c9b3-d2a8-49b6-b959-7678b54e4341
  2903. dateModified: '2025-05-09T14:39:08.591449-04:00'
  2904. datePublished: '2025-05-12T16:26:20.204896+00:00'
  2905. digest:
  2906. dandi:dandi-etag: 60739bd7e9f67273dd6ac36c64ca72b4-1
  2907. dandi:sha2-256: 40641767abf2dc5a6940c9e42e17e2e0ca7a4bfddca50016302c99a0515ba8ca
  2908. encodingFormat: image/png
  2909. id: dandiasset:b5e62ef9-9b06-425c-8027-b8b9dc48e28d
  2910. identifier: b5e62ef9-9b06-425c-8027-b8b9dc48e28d
  2911. path: sub-rat5/micr/sub-rat5_sample-data14_SEM.png
  2912. publishedBy:
  2913. endDate: '2025-05-12T16:26:20.204896+00:00'
  2914. id: urn:uuid:0837219d-f475-488b-92d2-a386b3aaa593
  2915. name: DANDI publish
  2916. schemaKey: PublishActivity
  2917. startDate: '2025-05-12T16:26:20.204896+00:00'
  2918. wasAssociatedWith:
  2919. - id: urn:uuid:1d87f80b-25fb-449a-b4af-1f95a1c43dbc
  2920. identifier: RRID:SCR_017571
  2921. name: DANDI API
  2922. schemaKey: Software
  2923. version: 0.1.0
  2924. schemaKey: Asset
  2925. schemaVersion: 0.6.9
  2926. wasAttributedTo:
  2927. - identifier: rat5
  2928. schemaKey: Participant
  2929. wasGeneratedBy:
  2930. - description: Metadata generated by DANDI cli
  2931. endDate: '2025-05-09T14:39:08.029990-04:00'
  2932. id: urn:uuid:7e2a7cb4-2132-41b2-9cee-8e04bec0001e
  2933. name: Metadata generation
  2934. schemaKey: Activity
  2935. startDate: '2025-05-09T14:39:08.029990-04:00'
  2936. wasAssociatedWith:
  2937. - identifier: RRID:SCR_019009
  2938. name: DANDI Command Line Interface
  2939. schemaKey: Software
  2940. url: https://github.com/dandi/dandi-cli
  2941. version: 0.66.7
  2942. - description: Metadata generated by DANDI cli
  2943. endDate: '2025-05-09T14:39:08.591383-04:00'
  2944. id: urn:uuid:5912bf47-77df-4fd7-ba8a-e53fe20aeca5
  2945. name: Metadata generation
  2946. schemaKey: Activity
  2947. startDate: '2025-05-09T14:39:08.591383-04:00'
  2948. wasAssociatedWith:
  2949. - identifier: RRID:SCR_019009
  2950. name: DANDI Command Line Interface
  2951. schemaKey: Software
  2952. url: https://github.com/dandi/dandi-cli
  2953. version: 0.66.7
  2954. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  2955. access:
  2956. - schemaKey: AccessRequirements
  2957. status: dandi:OpenAccess
  2958. blobDateModified: '2022-02-21T15:05:29.521415-05:00'
  2959. contentSize: 98
  2960. contentUrl:
  2961. - https://api.dandiarchive.org/api/assets/41d9adb1-de8b-47c6-8e49-ef1c336bddde/download/
  2962. - https://dandiarchive.s3.amazonaws.com/blobs/319/f43/319f4330-f1e9-4bac-8299-c33d711fc0e4
  2963. dateModified: '2025-05-09T14:39:09.955325-04:00'
  2964. datePublished: '2025-05-12T16:26:20.213406+00:00'
  2965. digest:
  2966. dandi:dandi-etag: 22a06322b7495b86fbd9deba6f3b19e1-1
  2967. dandi:sha2-256: 6a9f99cad655d572be10e118e99153f383db9fbd0756efb0dff81134084c7a2f
  2968. encodingFormat: application/json
  2969. id: dandiasset:41d9adb1-de8b-47c6-8e49-ef1c336bddde
  2970. identifier: 41d9adb1-de8b-47c6-8e49-ef1c336bddde
  2971. path: sub-rat7/micr/sub-rat7_sample-Maxo03img60_SEM.json
  2972. publishedBy:
  2973. endDate: '2025-05-12T16:26:20.213406+00:00'
  2974. id: urn:uuid:095c493a-d3a1-4dac-87d3-f6bc4cd21f7d
  2975. name: DANDI publish
  2976. schemaKey: PublishActivity
  2977. startDate: '2025-05-12T16:26:20.213406+00:00'
  2978. wasAssociatedWith:
  2979. - id: urn:uuid:9fc3af78-2645-464f-8270-c68b465f7e99
  2980. identifier: RRID:SCR_017571
  2981. name: DANDI API
  2982. schemaKey: Software
  2983. version: 0.1.0
  2984. schemaKey: Asset
  2985. schemaVersion: 0.6.9
  2986. wasAttributedTo:
  2987. - identifier: rat7
  2988. schemaKey: Participant
  2989. wasGeneratedBy:
  2990. - description: Metadata generated by DANDI cli
  2991. endDate: '2025-05-09T14:39:09.550922-04:00'
  2992. id: urn:uuid:2e696b14-fa58-49aa-b1a5-f341778669ac
  2993. name: Metadata generation
  2994. schemaKey: Activity
  2995. startDate: '2025-05-09T14:39:09.550922-04:00'
  2996. wasAssociatedWith:
  2997. - identifier: RRID:SCR_019009
  2998. name: DANDI Command Line Interface
  2999. schemaKey: Software
  3000. url: https://github.com/dandi/dandi-cli
  3001. version: 0.66.7
  3002. - description: Metadata generated by DANDI cli
  3003. endDate: '2025-05-09T14:39:09.955268-04:00'
  3004. id: urn:uuid:db7607c8-6c58-4eba-af41-51113a57beff
  3005. name: Metadata generation
  3006. schemaKey: Activity
  3007. startDate: '2025-05-09T14:39:09.955268-04:00'
  3008. wasAssociatedWith:
  3009. - identifier: RRID:SCR_019009
  3010. name: DANDI Command Line Interface
  3011. schemaKey: Software
  3012. url: https://github.com/dandi/dandi-cli
  3013. version: 0.66.7
  3014. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  3015. access:
  3016. - schemaKey: AccessRequirements
  3017. status: dandi:OpenAccess
  3018. blobDateModified: '2022-02-21T15:05:29.520415-05:00'
  3019. contentSize: 722477
  3020. contentUrl:
  3021. - https://api.dandiarchive.org/api/assets/f2c8f0e1-e3fe-42af-be8c-551c0bf06030/download/
  3022. - https://dandiarchive.s3.amazonaws.com/blobs/6d8/6ab/6d86abfe-6dd3-44d6-9bdc-0728102bc796
  3023. dateModified: '2025-05-09T14:39:09.696435-04:00'
  3024. datePublished: '2025-05-12T16:26:20.220400+00:00'
  3025. digest:
  3026. dandi:dandi-etag: 1c192c2dacfe73552117ca2104330cdb-1
  3027. dandi:sha2-256: 200025eda35c6f5264b37f2a5a1d361ecc2c613409d1e03d0abc3a1bc612df8c
  3028. encodingFormat: image/png
  3029. id: dandiasset:f2c8f0e1-e3fe-42af-be8c-551c0bf06030
  3030. identifier: f2c8f0e1-e3fe-42af-be8c-551c0bf06030
  3031. path: sub-rat6/micr/sub-rat6_sample-data15_SEM.png
  3032. publishedBy:
  3033. endDate: '2025-05-12T16:26:20.220400+00:00'
  3034. id: urn:uuid:09201962-8c76-44a8-adaa-edae45c37d95
  3035. name: DANDI publish
  3036. schemaKey: PublishActivity
  3037. startDate: '2025-05-12T16:26:20.220400+00:00'
  3038. wasAssociatedWith:
  3039. - id: urn:uuid:a4093e3a-3139-404e-82f6-ea67d8badddc
  3040. identifier: RRID:SCR_017571
  3041. name: DANDI API
  3042. schemaKey: Software
  3043. version: 0.1.0
  3044. schemaKey: Asset
  3045. schemaVersion: 0.6.9
  3046. wasAttributedTo:
  3047. - identifier: rat6
  3048. schemaKey: Participant
  3049. wasGeneratedBy:
  3050. - description: Metadata generated by DANDI cli
  3051. endDate: '2025-05-09T14:39:09.145419-04:00'
  3052. id: urn:uuid:6aafd5b9-c0b0-4f52-a061-a1c029382b19
  3053. name: Metadata generation
  3054. schemaKey: Activity
  3055. startDate: '2025-05-09T14:39:09.145419-04:00'
  3056. wasAssociatedWith:
  3057. - identifier: RRID:SCR_019009
  3058. name: DANDI Command Line Interface
  3059. schemaKey: Software
  3060. url: https://github.com/dandi/dandi-cli
  3061. version: 0.66.7
  3062. - description: Metadata generated by DANDI cli
  3063. endDate: '2025-05-09T14:39:09.696359-04:00'
  3064. id: urn:uuid:90740b59-2a9d-4749-93a1-1aa1b42b9651
  3065. name: Metadata generation
  3066. schemaKey: Activity
  3067. startDate: '2025-05-09T14:39:09.696359-04:00'
  3068. wasAssociatedWith:
  3069. - identifier: RRID:SCR_019009
  3070. name: DANDI Command Line Interface
  3071. schemaKey: Software
  3072. url: https://github.com/dandi/dandi-cli
  3073. version: 0.66.7
  3074. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  3075. access:
  3076. - schemaKey: AccessRequirements
  3077. status: dandi:OpenAccess
  3078. blobDateModified: '2022-02-21T15:05:29.531415-05:00'
  3079. contentSize: 188
  3080. contentUrl:
  3081. - https://api.dandiarchive.org/api/assets/fc385878-f947-443d-969b-ffe220174bd7/download/
  3082. - https://dandiarchive.s3.amazonaws.com/blobs/d1d/c55/d1dc55dd-5490-43b8-af05-f704c602ce82
  3083. dateModified: '2025-05-09T14:39:10.588495-04:00'
  3084. datePublished: '2025-05-12T16:26:20.229469+00:00'
  3085. digest:
  3086. dandi:dandi-etag: 315301fda48d688053caf2bf22f06bb2-1
  3087. dandi:sha2-256: 6435cc9463d600f167b483af741c9a30afd68cc81d555e2994e35d7a6038fb3d
  3088. encodingFormat: application/json
  3089. id: dandiasset:fc385878-f947-443d-969b-ffe220174bd7
  3090. identifier: fc385878-f947-443d-969b-ffe220174bd7
  3091. path: sub-rat8/micr/sub-rat8_sample-V915_SEM.json
  3092. publishedBy:
  3093. endDate: '2025-05-12T16:26:20.229469+00:00'
  3094. id: urn:uuid:76eb1740-f882-4639-b088-4fdd63bd08e3
  3095. name: DANDI publish
  3096. schemaKey: PublishActivity
  3097. startDate: '2025-05-12T16:26:20.229469+00:00'
  3098. wasAssociatedWith:
  3099. - id: urn:uuid:2065fdad-2ab6-4c2f-a210-b0f267aa5246
  3100. identifier: RRID:SCR_017571
  3101. name: DANDI API
  3102. schemaKey: Software
  3103. version: 0.1.0
  3104. schemaKey: Asset
  3105. schemaVersion: 0.6.9
  3106. wasAttributedTo:
  3107. - identifier: rat8
  3108. schemaKey: Participant
  3109. wasGeneratedBy:
  3110. - description: Metadata generated by DANDI cli
  3111. endDate: '2025-05-09T14:39:10.292308-04:00'
  3112. id: urn:uuid:df05a69a-beff-4907-94ec-027e9bd7a10a
  3113. name: Metadata generation
  3114. schemaKey: Activity
  3115. startDate: '2025-05-09T14:39:10.292308-04:00'
  3116. wasAssociatedWith:
  3117. - identifier: RRID:SCR_019009
  3118. name: DANDI Command Line Interface
  3119. schemaKey: Software
  3120. url: https://github.com/dandi/dandi-cli
  3121. version: 0.66.7
  3122. - description: Metadata generated by DANDI cli
  3123. endDate: '2025-05-09T14:39:10.588424-04:00'
  3124. id: urn:uuid:1abc6565-86d6-4488-a72e-912eabe80f51
  3125. name: Metadata generation
  3126. schemaKey: Activity
  3127. startDate: '2025-05-09T14:39:10.588424-04:00'
  3128. wasAssociatedWith:
  3129. - identifier: RRID:SCR_019009
  3130. name: DANDI Command Line Interface
  3131. schemaKey: Software
  3132. url: https://github.com/dandi/dandi-cli
  3133. version: 0.66.7
  3134. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  3135. access:
  3136. - schemaKey: AccessRequirements
  3137. status: dandi:OpenAccess
  3138. blobDateModified: '2022-02-21T15:05:29.531415-05:00'
  3139. contentSize: 2297802
  3140. contentUrl:
  3141. - https://api.dandiarchive.org/api/assets/2f09c302-b416-4060-bbc7-db32e3c7e93d/download/
  3142. - https://dandiarchive.s3.amazonaws.com/blobs/27f/ad9/27fad93b-b9a1-439c-bccf-fea201e1688a
  3143. dateModified: '2025-05-09T14:39:10.648185-04:00'
  3144. datePublished: '2025-05-12T16:26:20.236962+00:00'
  3145. digest:
  3146. dandi:dandi-etag: 6e67a935b4ee0ed44a89d704de3bf7a9-1
  3147. dandi:sha2-256: 952014851a21ad3cce229d8ba72ea935ad762bbe3bfb48e5f5b972971f57f566
  3148. encodingFormat: image/png
  3149. id: dandiasset:2f09c302-b416-4060-bbc7-db32e3c7e93d
  3150. identifier: 2f09c302-b416-4060-bbc7-db32e3c7e93d
  3151. path: sub-rat7/micr/sub-rat7_sample-Maxo03img60_SEM.png
  3152. publishedBy:
  3153. endDate: '2025-05-12T16:26:20.236962+00:00'
  3154. id: urn:uuid:29766409-814e-4ef9-9741-7eef4e119efc
  3155. name: DANDI publish
  3156. schemaKey: PublishActivity
  3157. startDate: '2025-05-12T16:26:20.236962+00:00'
  3158. wasAssociatedWith:
  3159. - id: urn:uuid:69f41212-1d8a-4730-83d7-9fe017e00a20
  3160. identifier: RRID:SCR_017571
  3161. name: DANDI API
  3162. schemaKey: Software
  3163. version: 0.1.0
  3164. schemaKey: Asset
  3165. schemaVersion: 0.6.9
  3166. wasAttributedTo:
  3167. - identifier: rat7
  3168. schemaKey: Participant
  3169. wasGeneratedBy:
  3170. - description: Metadata generated by DANDI cli
  3171. endDate: '2025-05-09T14:39:10.254201-04:00'
  3172. id: urn:uuid:07cbf943-5a15-4a1f-9ec6-a36563d4086d
  3173. name: Metadata generation
  3174. schemaKey: Activity
  3175. startDate: '2025-05-09T14:39:10.254201-04:00'
  3176. wasAssociatedWith:
  3177. - identifier: RRID:SCR_019009
  3178. name: DANDI Command Line Interface
  3179. schemaKey: Software
  3180. url: https://github.com/dandi/dandi-cli
  3181. version: 0.66.7
  3182. - description: Metadata generated by DANDI cli
  3183. endDate: '2025-05-09T14:39:10.648129-04:00'
  3184. id: urn:uuid:120f5921-f1b9-4238-b9d4-1350bcc36f1f
  3185. name: Metadata generation
  3186. schemaKey: Activity
  3187. startDate: '2025-05-09T14:39:10.648129-04:00'
  3188. wasAssociatedWith:
  3189. - identifier: RRID:SCR_019009
  3190. name: DANDI Command Line Interface
  3191. schemaKey: Software
  3192. url: https://github.com/dandi/dandi-cli
  3193. version: 0.66.7
  3194. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  3195. access:
  3196. - schemaKey: AccessRequirements
  3197. status: dandi:OpenAccess
  3198. blobDateModified: '2022-02-21T15:05:29.534415-05:00'
  3199. contentSize: 912029
  3200. contentUrl:
  3201. - https://api.dandiarchive.org/api/assets/2c92050a-d6d3-4508-8cc2-636327849de6/download/
  3202. - https://dandiarchive.s3.amazonaws.com/blobs/6ed/0de/6ed0dec0-4d8a-43ce-84e3-9b37a2f2a5c2
  3203. dateModified: '2025-05-09T14:39:11.264623-04:00'
  3204. datePublished: '2025-05-12T16:26:20.245776+00:00'
  3205. digest:
  3206. dandi:dandi-etag: 0eac3761f1c5b0174999114e474f75d4-1
  3207. dandi:sha2-256: 433687677047cc3a2966a27c35325eaef89420fa0b0301d017892f70e3d87fdd
  3208. encodingFormat: image/png
  3209. id: dandiasset:2c92050a-d6d3-4508-8cc2-636327849de6
  3210. identifier: 2c92050a-d6d3-4508-8cc2-636327849de6
  3211. path: sub-rat8/micr/sub-rat8_sample-V915_SEM.png
  3212. publishedBy:
  3213. endDate: '2025-05-12T16:26:20.245776+00:00'
  3214. id: urn:uuid:063efb3f-b05f-456e-97a2-dc7a69c419ab
  3215. name: DANDI publish
  3216. schemaKey: PublishActivity
  3217. startDate: '2025-05-12T16:26:20.245776+00:00'
  3218. wasAssociatedWith:
  3219. - id: urn:uuid:9b26b6e6-a0e6-410d-bb17-d93d704116e8
  3220. identifier: RRID:SCR_017571
  3221. name: DANDI API
  3222. schemaKey: Software
  3223. version: 0.1.0
  3224. schemaKey: Asset
  3225. schemaVersion: 0.6.9
  3226. wasAttributedTo:
  3227. - identifier: rat8
  3228. schemaKey: Participant
  3229. wasGeneratedBy:
  3230. - description: Metadata generated by DANDI cli
  3231. endDate: '2025-05-09T14:39:11.041320-04:00'
  3232. id: urn:uuid:c244f0d3-42d7-4863-a8f3-95192399ed74
  3233. name: Metadata generation
  3234. schemaKey: Activity
  3235. startDate: '2025-05-09T14:39:11.041320-04:00'
  3236. wasAssociatedWith:
  3237. - identifier: RRID:SCR_019009
  3238. name: DANDI Command Line Interface
  3239. schemaKey: Software
  3240. url: https://github.com/dandi/dandi-cli
  3241. version: 0.66.7
  3242. - description: Metadata generated by DANDI cli
  3243. endDate: '2025-05-09T14:39:11.264563-04:00'
  3244. id: urn:uuid:0e3962ad-655b-4c09-bcd2-140dc173be06
  3245. name: Metadata generation
  3246. schemaKey: Activity
  3247. startDate: '2025-05-09T14:39:11.264563-04:00'
  3248. wasAssociatedWith:
  3249. - identifier: RRID:SCR_019009
  3250. name: DANDI Command Line Interface
  3251. schemaKey: Software
  3252. url: https://github.com/dandi/dandi-cli
  3253. version: 0.66.7
  3254. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  3255. access:
  3256. - schemaKey: AccessRequirements
  3257. status: dandi:OpenAccess
  3258. blobDateModified: '2025-05-09T15:20:35.973830-04:00'
  3259. contentSize: 499
  3260. contentUrl:
  3261. - https://api.dandiarchive.org/api/assets/c22b1dd6-0a44-4b28-a949-30159083fa3f/download/
  3262. - https://dandiarchive.s3.amazonaws.com/blobs/0ff/b1d/0ffb1d5b-fa92-42f8-9f50-9f4499c8f20c
  3263. dateModified: '2025-05-09T15:21:58.041457-04:00'
  3264. datePublished: '2025-05-12T16:26:20.252927+00:00'
  3265. digest:
  3266. dandi:dandi-etag: 74879cd74e48b13ab8775836be7ef6d8-1
  3267. dandi:sha2-256: 1c6906a6c69883a8489e4d05f736080de969e9648bd8b09d047f66d04ec171cb
  3268. encodingFormat: application/json
  3269. id: dandiasset:c22b1dd6-0a44-4b28-a949-30159083fa3f
  3270. identifier: c22b1dd6-0a44-4b28-a949-30159083fa3f
  3271. path: dataset_description.json
  3272. publishedBy:
  3273. endDate: '2025-05-12T16:26:20.252927+00:00'
  3274. id: urn:uuid:d4ae3783-548a-4ce8-a87a-863189eccbdd
  3275. name: DANDI publish
  3276. schemaKey: PublishActivity
  3277. startDate: '2025-05-12T16:26:20.252927+00:00'
  3278. wasAssociatedWith:
  3279. - id: urn:uuid:cb9a5f1b-4dca-4f4d-8ced-295090031fdf
  3280. identifier: RRID:SCR_017571
  3281. name: DANDI API
  3282. schemaKey: Software
  3283. version: 0.1.0
  3284. schemaKey: Asset
  3285. schemaVersion: 0.6.9
  3286. wasGeneratedBy:
  3287. - description: Metadata generated by DANDI cli
  3288. endDate: '2025-05-09T15:21:58.041405-04:00'
  3289. id: urn:uuid:c8ea54c9-aeea-4cc9-9e3b-4a854503930f
  3290. name: Metadata generation
  3291. schemaKey: Activity
  3292. startDate: '2025-05-09T15:21:58.041405-04:00'
  3293. wasAssociatedWith:
  3294. - identifier: RRID:SCR_019009
  3295. name: DANDI Command Line Interface
  3296. schemaKey: Software
  3297. url: https://github.com/dandi/dandi-cli
  3298. version: 0.66.7
Tip!

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

Comments

Loading...