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 101 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
  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. digest:
  12. dandi:dandi-etag: 648c6ddab7d487d51b31b8a356026740-1
  13. dandi:sha2-256: 68d141b821ed37aeab54c98e17512491d91495e979ebf6485d1a575c5b37449b
  14. encodingFormat: application/octet-stream
  15. id: dandiasset:b6e7bba7-c7ec-41d9-845b-b78e0d06a5de
  16. identifier: b6e7bba7-c7ec-41d9-845b-b78e0d06a5de
  17. path: README
  18. schemaKey: Asset
  19. schemaVersion: 0.6.9
  20. wasAttributedTo: []
  21. wasGeneratedBy:
  22. - description: Metadata generated by DANDI cli
  23. endDate: '2025-05-09T14:38:38.782463-04:00'
  24. id: urn:uuid:e7d6cda7-2567-4493-9e31-98ae05a86ee5
  25. name: Metadata generation
  26. schemaKey: Activity
  27. startDate: '2025-05-09T14:38:38.782463-04:00'
  28. wasAssociatedWith:
  29. - identifier: RRID:SCR_019009
  30. name: DANDI Command Line Interface
  31. schemaKey: Software
  32. url: https://github.com/dandi/dandi-cli
  33. version: 0.66.7
  34. - description: Metadata generated by DANDI cli
  35. endDate: '2025-05-09T14:38:39.391846-04:00'
  36. id: urn:uuid:d1b4bc7f-402c-4810-ad56-cf1100345e1f
  37. name: Metadata generation
  38. schemaKey: Activity
  39. startDate: '2025-05-09T14:38:39.391846-04:00'
  40. wasAssociatedWith:
  41. - identifier: RRID:SCR_019009
  42. name: DANDI Command Line Interface
  43. schemaKey: Software
  44. url: https://github.com/dandi/dandi-cli
  45. version: 0.66.7
  46. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  47. access:
  48. - schemaKey: AccessRequirements
  49. status: dandi:OpenAccess
  50. blobDateModified: '2022-02-21T15:05:29.480414-05:00'
  51. contentSize: 222
  52. contentUrl:
  53. - https://api.dandiarchive.org/api/assets/bf2d5efc-8de1-4801-abe7-215ada6a6168/download/
  54. - https://dandiarchive.s3.amazonaws.com/blobs/eed/fd4/eedfd45f-2e53-444e-804f-9f06c4b036c7
  55. dateModified: '2025-05-09T14:38:39.337419-04:00'
  56. digest:
  57. dandi:dandi-etag: e4386b82549fb1fb515615bd16342cd4-1
  58. dandi:sha2-256: 8de6a5c1d2fb94fc40290dfdf1bb22c2f1e74f53f08ba58402b7bd0fe57851c9
  59. encodingFormat: application/json
  60. id: dandiasset:bf2d5efc-8de1-4801-abe7-215ada6a6168
  61. identifier: bf2d5efc-8de1-4801-abe7-215ada6a6168
  62. path: derivatives/labels/dataset_description.json
  63. schemaKey: Asset
  64. schemaVersion: 0.6.9
  65. wasGeneratedBy:
  66. - description: Metadata generated by DANDI cli
  67. endDate: '2025-05-09T14:38:38.791273-04:00'
  68. id: urn:uuid:16d25dca-4101-470c-9f04-49d2d815baf1
  69. name: Metadata generation
  70. schemaKey: Activity
  71. startDate: '2025-05-09T14:38:38.791273-04:00'
  72. wasAssociatedWith:
  73. - identifier: RRID:SCR_019009
  74. name: DANDI Command Line Interface
  75. schemaKey: Software
  76. url: https://github.com/dandi/dandi-cli
  77. version: 0.66.7
  78. - description: Metadata generated by DANDI cli
  79. endDate: '2025-05-09T14:38:39.337352-04:00'
  80. id: urn:uuid:4cedf734-f4e1-4df5-a237-d3e69337c3d1
  81. name: Metadata generation
  82. schemaKey: Activity
  83. startDate: '2025-05-09T14:38:39.337352-04:00'
  84. wasAssociatedWith:
  85. - identifier: RRID:SCR_019009
  86. name: DANDI Command Line Interface
  87. schemaKey: Software
  88. url: https://github.com/dandi/dandi-cli
  89. version: 0.66.7
  90. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  91. access:
  92. - schemaKey: AccessRequirements
  93. status: dandi:OpenAccess
  94. blobDateModified: '2025-05-09T14:33:15.401451-04:00'
  95. contentSize: 467
  96. contentUrl:
  97. - https://api.dandiarchive.org/api/assets/8849fe43-dfaf-4637-9d6c-3b75ef10ebc8/download/
  98. - https://dandiarchive.s3.amazonaws.com/blobs/87c/beb/87cbebc5-c651-4ea5-89bb-24abcd19ac27
  99. dateModified: '2025-05-09T14:38:39.316020-04:00'
  100. digest:
  101. dandi:dandi-etag: f4a4e01cd42ff3400b8f057fbf37eec6-1
  102. dandi:sha2-256: d922110f9e52cad5a6b75f7626a6cb59c198d6a8cc54a28b1adda0183641b62a
  103. encodingFormat: application/octet-stream
  104. id: dandiasset:8849fe43-dfaf-4637-9d6c-3b75ef10ebc8
  105. identifier: 8849fe43-dfaf-4637-9d6c-3b75ef10ebc8
  106. path: CHANGES
  107. schemaKey: Asset
  108. schemaVersion: 0.6.9
  109. wasAttributedTo: []
  110. wasGeneratedBy:
  111. - description: Metadata generated by DANDI cli
  112. endDate: '2025-05-09T14:38:38.756342-04:00'
  113. id: urn:uuid:c1848ccc-da00-49bb-b56d-c79902942625
  114. name: Metadata generation
  115. schemaKey: Activity
  116. startDate: '2025-05-09T14:38:38.756342-04:00'
  117. wasAssociatedWith:
  118. - identifier: RRID:SCR_019009
  119. name: DANDI Command Line Interface
  120. schemaKey: Software
  121. url: https://github.com/dandi/dandi-cli
  122. version: 0.66.7
  123. - description: Metadata generated by DANDI cli
  124. endDate: '2025-05-09T14:38:39.315936-04:00'
  125. id: urn:uuid:79f5d394-ee9f-455a-aafc-293987620fab
  126. name: Metadata generation
  127. schemaKey: Activity
  128. startDate: '2025-05-09T14:38:39.315936-04:00'
  129. wasAssociatedWith:
  130. - identifier: RRID:SCR_019009
  131. name: DANDI Command Line Interface
  132. schemaKey: Software
  133. url: https://github.com/dandi/dandi-cli
  134. version: 0.66.7
  135. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  136. access:
  137. - schemaKey: AccessRequirements
  138. status: dandi:OpenAccess
  139. blobDateModified: '2022-02-21T15:05:29.479414-05:00'
  140. contentSize: 1065
  141. contentUrl:
  142. - https://api.dandiarchive.org/api/assets/5b8405fa-401c-437a-ac1c-e295af73eef0/download/
  143. - https://dandiarchive.s3.amazonaws.com/blobs/9f1/718/9f17183e-102d-4e56-93f6-8714d23978a9
  144. dateModified: '2025-05-09T14:38:39.379357-04:00'
  145. digest:
  146. dandi:dandi-etag: 2ed93607405c9285bcb7f679b1546895-1
  147. dandi:sha2-256: 8f31334ffb7b2fded9233f707aeeb4dc1ac269b114d9885be5c6a24d2fe22782
  148. encodingFormat: application/octet-stream
  149. id: dandiasset:5b8405fa-401c-437a-ac1c-e295af73eef0
  150. identifier: 5b8405fa-401c-437a-ac1c-e295af73eef0
  151. path: LICENSE
  152. schemaKey: Asset
  153. schemaVersion: 0.6.9
  154. wasAttributedTo: []
  155. wasGeneratedBy:
  156. - description: Metadata generated by DANDI cli
  157. endDate: '2025-05-09T14:38:38.756810-04:00'
  158. id: urn:uuid:a6976644-a2ee-4ce1-aa23-c8072de11a77
  159. name: Metadata generation
  160. schemaKey: Activity
  161. startDate: '2025-05-09T14:38:38.756810-04:00'
  162. wasAssociatedWith:
  163. - identifier: RRID:SCR_019009
  164. name: DANDI Command Line Interface
  165. schemaKey: Software
  166. url: https://github.com/dandi/dandi-cli
  167. version: 0.66.7
  168. - description: Metadata generated by DANDI cli
  169. endDate: '2025-05-09T14:38:39.379302-04:00'
  170. id: urn:uuid:bbc79326-c9aa-45cc-bbb8-753b8a760362
  171. name: Metadata generation
  172. schemaKey: Activity
  173. startDate: '2025-05-09T14:38:39.379302-04:00'
  174. wasAssociatedWith:
  175. - identifier: RRID:SCR_019009
  176. name: DANDI Command Line Interface
  177. schemaKey: Software
  178. url: https://github.com/dandi/dandi-cli
  179. version: 0.66.7
  180. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  181. access:
  182. - schemaKey: AccessRequirements
  183. status: dandi:OpenAccess
  184. blobDateModified: '2025-04-30T16:37:23.659881-04:00'
  185. contentSize: 74974
  186. contentUrl:
  187. - https://api.dandiarchive.org/api/assets/ee950f4d-7311-475a-a30c-fb20d5ee62bc/download/
  188. - https://dandiarchive.s3.amazonaws.com/blobs/fbf/cdb/fbfcdbbd-9fe8-4f81-845d-6c42e9005a51
  189. dateModified: '2025-05-09T14:38:42.480930-04:00'
  190. digest:
  191. dandi:dandi-etag: e4a1c04382a59a7bd463783970b7d89a-1
  192. dandi:sha2-256: 47e80e6160360d9993df4d75b52efe999ef5a7b842bd56107598dd7168f872fb
  193. encodingFormat: image/png
  194. id: dandiasset:ee950f4d-7311-475a-a30c-fb20d5ee62bc
  195. identifier: ee950f4d-7311-475a-a30c-fb20d5ee62bc
  196. path: derivatives/labels/sub-rat1/micr/sub-rat1_sample-data1_SEM_seg-axon-manual.png
  197. schemaKey: Asset
  198. schemaVersion: 0.6.9
  199. wasGeneratedBy:
  200. - description: Metadata generated by DANDI cli
  201. endDate: '2025-05-09T14:38:41.585611-04:00'
  202. id: urn:uuid:276c2a5e-5695-4c34-8a46-3b9cd77ff259
  203. name: Metadata generation
  204. schemaKey: Activity
  205. startDate: '2025-05-09T14:38:41.585611-04:00'
  206. wasAssociatedWith:
  207. - identifier: RRID:SCR_019009
  208. name: DANDI Command Line Interface
  209. schemaKey: Software
  210. url: https://github.com/dandi/dandi-cli
  211. version: 0.66.7
  212. - description: Metadata generated by DANDI cli
  213. endDate: '2025-05-09T14:38:42.480817-04:00'
  214. id: urn:uuid:db73069c-a2cb-46d2-a319-22cd70d9ae40
  215. name: Metadata generation
  216. schemaKey: Activity
  217. startDate: '2025-05-09T14:38:42.480817-04:00'
  218. wasAssociatedWith:
  219. - identifier: RRID:SCR_019009
  220. name: DANDI Command Line Interface
  221. schemaKey: Software
  222. url: https://github.com/dandi/dandi-cli
  223. version: 0.66.7
  224. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  225. access:
  226. - schemaKey: AccessRequirements
  227. status: dandi:OpenAccess
  228. blobDateModified: '2025-04-30T08:48:14.434659-04:00'
  229. contentSize: 107054
  230. contentUrl:
  231. - https://api.dandiarchive.org/api/assets/eaf62f07-df43-4fa5-9ca8-a6d015996243/download/
  232. - https://dandiarchive.s3.amazonaws.com/blobs/238/dcc/238dcc04-b739-486e-8e06-ff359adca7b1
  233. dateModified: '2025-05-09T14:38:42.930463-04:00'
  234. digest:
  235. dandi:dandi-etag: 6f98583b87b3d65373e24d683bef637c-1
  236. dandi:sha2-256: c2b7e54d0218d3025df305aab37641729750b2035ddf0d51ce1232e594708417
  237. encodingFormat: image/png
  238. id: dandiasset:eaf62f07-df43-4fa5-9ca8-a6d015996243
  239. identifier: eaf62f07-df43-4fa5-9ca8-a6d015996243
  240. path: derivatives/labels/sub-rat1/micr/sub-rat1_sample-data1_SEM_seg-axonmyelin-manual.png
  241. schemaKey: Asset
  242. schemaVersion: 0.6.9
  243. wasGeneratedBy:
  244. - description: Metadata generated by DANDI cli
  245. endDate: '2025-05-09T14:38:41.974938-04:00'
  246. id: urn:uuid:70ddd38d-3df7-423d-8f34-8a54c3a9fd6f
  247. name: Metadata generation
  248. schemaKey: Activity
  249. startDate: '2025-05-09T14:38:41.974938-04:00'
  250. wasAssociatedWith:
  251. - identifier: RRID:SCR_019009
  252. name: DANDI Command Line Interface
  253. schemaKey: Software
  254. url: https://github.com/dandi/dandi-cli
  255. version: 0.66.7
  256. - description: Metadata generated by DANDI cli
  257. endDate: '2025-05-09T14:38:42.930363-04:00'
  258. id: urn:uuid:f90eaed0-1fb6-4d0b-a886-40efa59173d4
  259. name: Metadata generation
  260. schemaKey: Activity
  261. startDate: '2025-05-09T14:38:42.930363-04:00'
  262. wasAssociatedWith:
  263. - identifier: RRID:SCR_019009
  264. name: DANDI Command Line Interface
  265. schemaKey: Software
  266. url: https://github.com/dandi/dandi-cli
  267. version: 0.66.7
  268. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  269. access:
  270. - schemaKey: AccessRequirements
  271. status: dandi:OpenAccess
  272. blobDateModified: '2025-04-30T16:37:23.703882-04:00'
  273. contentSize: 135773
  274. contentUrl:
  275. - https://api.dandiarchive.org/api/assets/223399a4-f4a6-4c4f-8d61-1c185f99b473/download/
  276. - https://dandiarchive.s3.amazonaws.com/blobs/f56/5ba/f565ba38-f515-4052-a45e-431d313e6ad6
  277. dateModified: '2025-05-09T14:38:43.117812-04:00'
  278. digest:
  279. dandi:dandi-etag: d34866bd55d0dd9de9286014fbd54490-1
  280. dandi:sha2-256: 3d363db28b7ce1f200b257e51b6537a3956b0a6ed8836e905a52d9d451831cc1
  281. encodingFormat: image/png
  282. id: dandiasset:223399a4-f4a6-4c4f-8d61-1c185f99b473
  283. identifier: 223399a4-f4a6-4c4f-8d61-1c185f99b473
  284. path: derivatives/labels/sub-rat1/micr/sub-rat1_sample-data1_SEM_seg-myelin-manual.png
  285. schemaKey: Asset
  286. schemaVersion: 0.6.9
  287. wasGeneratedBy:
  288. - description: Metadata generated by DANDI cli
  289. endDate: '2025-05-09T14:38:42.072353-04:00'
  290. id: urn:uuid:aad74bb1-31e4-43aa-88b9-47d1751c163c
  291. name: Metadata generation
  292. schemaKey: Activity
  293. startDate: '2025-05-09T14:38:42.072353-04:00'
  294. wasAssociatedWith:
  295. - identifier: RRID:SCR_019009
  296. name: DANDI Command Line Interface
  297. schemaKey: Software
  298. url: https://github.com/dandi/dandi-cli
  299. version: 0.66.7
  300. - description: Metadata generated by DANDI cli
  301. endDate: '2025-05-09T14:38:43.117734-04:00'
  302. id: urn:uuid:1ec641d2-27a0-4c17-b1d5-217564cbe8c9
  303. name: Metadata generation
  304. schemaKey: Activity
  305. startDate: '2025-05-09T14:38:43.117734-04:00'
  306. wasAssociatedWith:
  307. - identifier: RRID:SCR_019009
  308. name: DANDI Command Line Interface
  309. schemaKey: Software
  310. url: https://github.com/dandi/dandi-cli
  311. version: 0.66.7
  312. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  313. access:
  314. - schemaKey: AccessRequirements
  315. status: dandi:OpenAccess
  316. blobDateModified: '2025-04-30T16:39:56.134288-04:00'
  317. contentSize: 22933
  318. contentUrl:
  319. - https://api.dandiarchive.org/api/assets/fd2a9ab3-cac3-42da-afa5-e29863930859/download/
  320. - https://dandiarchive.s3.amazonaws.com/blobs/f0e/29b/f0e29b97-d8b7-4a63-b1ce-633974b11812
  321. dateModified: '2025-05-09T14:38:44.232234-04:00'
  322. digest:
  323. dandi:dandi-etag: 10f8e20224d49f92f00d13d966c675cb-1
  324. dandi:sha2-256: 5fab25ea18bbf3f0778096491190ef5fcd31aa59a5cb4407599de2893748d544
  325. encodingFormat: image/png
  326. id: dandiasset:fd2a9ab3-cac3-42da-afa5-e29863930859
  327. identifier: fd2a9ab3-cac3-42da-afa5-e29863930859
  328. path: derivatives/labels/sub-rat2/micr/sub-rat2_sample-data5_SEM_seg-axon-manual.png
  329. schemaKey: Asset
  330. schemaVersion: 0.6.9
  331. wasGeneratedBy:
  332. - description: Metadata generated by DANDI cli
  333. endDate: '2025-05-09T14:38:42.878766-04:00'
  334. id: urn:uuid:2174c1a1-edbe-44e0-a0bf-45d0a7d3d199
  335. name: Metadata generation
  336. schemaKey: Activity
  337. startDate: '2025-05-09T14:38:42.878766-04:00'
  338. wasAssociatedWith:
  339. - identifier: RRID:SCR_019009
  340. name: DANDI Command Line Interface
  341. schemaKey: Software
  342. url: https://github.com/dandi/dandi-cli
  343. version: 0.66.7
  344. - description: Metadata generated by DANDI cli
  345. endDate: '2025-05-09T14:38:44.232151-04:00'
  346. id: urn:uuid:eb30b477-9e3b-48ab-9a4a-16df12a224ac
  347. name: Metadata generation
  348. schemaKey: Activity
  349. startDate: '2025-05-09T14:38:44.232151-04:00'
  350. wasAssociatedWith:
  351. - identifier: RRID:SCR_019009
  352. name: DANDI Command Line Interface
  353. schemaKey: Software
  354. url: https://github.com/dandi/dandi-cli
  355. version: 0.66.7
  356. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  357. access:
  358. - schemaKey: AccessRequirements
  359. status: dandi:OpenAccess
  360. blobDateModified: '2022-02-21T15:05:29.482414-05:00'
  361. contentSize: 51098
  362. contentUrl:
  363. - https://api.dandiarchive.org/api/assets/9c4cc60f-d61a-410d-8677-f63c3b993e00/download/
  364. - https://dandiarchive.s3.amazonaws.com/blobs/190/490/190490d7-3ba1-4e21-ab52-66e74e372820
  365. dateModified: '2025-05-09T14:38:44.678023-04:00'
  366. digest:
  367. dandi:dandi-etag: ed258aba76e90082db43a2f24484781c-1
  368. dandi:sha2-256: 8563bf77d1a9dafffbdad8a524bb5e2dcdf93e7ecbade0f2698667de8ca3523f
  369. encodingFormat: image/png
  370. id: dandiasset:9c4cc60f-d61a-410d-8677-f63c3b993e00
  371. identifier: 9c4cc60f-d61a-410d-8677-f63c3b993e00
  372. path: derivatives/labels/sub-rat2/micr/sub-rat2_sample-data5_SEM_seg-axonmyelin-manual.png
  373. schemaKey: Asset
  374. schemaVersion: 0.6.9
  375. wasGeneratedBy:
  376. - description: Metadata generated by DANDI cli
  377. endDate: '2025-05-09T14:38:43.653543-04:00'
  378. id: urn:uuid:88fd35aa-c471-465b-8298-ceb2277711cd
  379. name: Metadata generation
  380. schemaKey: Activity
  381. startDate: '2025-05-09T14:38:43.653543-04:00'
  382. wasAssociatedWith:
  383. - identifier: RRID:SCR_019009
  384. name: DANDI Command Line Interface
  385. schemaKey: Software
  386. url: https://github.com/dandi/dandi-cli
  387. version: 0.66.7
  388. - description: Metadata generated by DANDI cli
  389. endDate: '2025-05-09T14:38:44.677930-04:00'
  390. id: urn:uuid:bf366c21-5211-4429-afbb-cf7ebee0475a
  391. name: Metadata generation
  392. schemaKey: Activity
  393. startDate: '2025-05-09T14:38:44.677930-04:00'
  394. wasAssociatedWith:
  395. - identifier: RRID:SCR_019009
  396. name: DANDI Command Line Interface
  397. schemaKey: Software
  398. url: https://github.com/dandi/dandi-cli
  399. version: 0.66.7
  400. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  401. access:
  402. - schemaKey: AccessRequirements
  403. status: dandi:OpenAccess
  404. blobDateModified: '2022-02-21T15:05:29.482414-05:00'
  405. contentSize: 50286
  406. contentUrl:
  407. - https://api.dandiarchive.org/api/assets/2baec682-7343-4fe3-a943-939a77424950/download/
  408. - https://dandiarchive.s3.amazonaws.com/blobs/bf0/e84/bf0e848f-ecdb-415f-bbb3-05eeade48678
  409. dateModified: '2025-05-09T14:38:45.811669-04:00'
  410. digest:
  411. dandi:dandi-etag: 8c8eff23e47a40eb50423621bf0db9d6-1
  412. dandi:sha2-256: 89a5d96c714ac31332dc9c2371f42ca0508e0f9fb17195d6add596b7466fd701
  413. encodingFormat: image/png
  414. id: dandiasset:2baec682-7343-4fe3-a943-939a77424950
  415. identifier: 2baec682-7343-4fe3-a943-939a77424950
  416. path: derivatives/labels/sub-rat2/micr/sub-rat2_sample-data5_SEM_seg-myelin-manual.png
  417. schemaKey: Asset
  418. schemaVersion: 0.6.9
  419. wasGeneratedBy:
  420. - description: Metadata generated by DANDI cli
  421. endDate: '2025-05-09T14:38:45.205012-04:00'
  422. id: urn:uuid:452969cc-f2a5-47e8-b262-c8edaca701a7
  423. name: Metadata generation
  424. schemaKey: Activity
  425. startDate: '2025-05-09T14:38:45.205012-04:00'
  426. wasAssociatedWith:
  427. - identifier: RRID:SCR_019009
  428. name: DANDI Command Line Interface
  429. schemaKey: Software
  430. url: https://github.com/dandi/dandi-cli
  431. version: 0.66.7
  432. - description: Metadata generated by DANDI cli
  433. endDate: '2025-05-09T14:38:45.811609-04:00'
  434. id: urn:uuid:3844a412-2ee8-40b8-9009-f442a17761b0
  435. name: Metadata generation
  436. schemaKey: Activity
  437. startDate: '2025-05-09T14:38:45.811609-04:00'
  438. wasAssociatedWith:
  439. - identifier: RRID:SCR_019009
  440. name: DANDI Command Line Interface
  441. schemaKey: Software
  442. url: https://github.com/dandi/dandi-cli
  443. version: 0.66.7
  444. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  445. access:
  446. - schemaKey: AccessRequirements
  447. status: dandi:OpenAccess
  448. blobDateModified: '2025-04-30T16:37:22.903879-04:00'
  449. contentSize: 29321
  450. contentUrl:
  451. - https://api.dandiarchive.org/api/assets/328fd7e1-e6aa-4f7b-9b7c-6523cee3d4fa/download/
  452. - https://dandiarchive.s3.amazonaws.com/blobs/527/720/5277201c-8de8-4ef0-9505-3b51d81948bc
  453. dateModified: '2025-05-09T14:38:47.246276-04:00'
  454. digest:
  455. dandi:dandi-etag: 6d05ea05d3bd1e67fb7fcecc416a38ea-1
  456. dandi:sha2-256: 4f2a510d525bac98779c6eb5ad4dfb6e1bde382c779a9e0e5a9dd9fdc19c9662
  457. encodingFormat: image/png
  458. id: dandiasset:328fd7e1-e6aa-4f7b-9b7c-6523cee3d4fa
  459. identifier: 328fd7e1-e6aa-4f7b-9b7c-6523cee3d4fa
  460. path: derivatives/labels/sub-rat3/micr/sub-rat3_sample-data10_SEM_seg-axon-manual.png
  461. schemaKey: Asset
  462. schemaVersion: 0.6.9
  463. wasGeneratedBy:
  464. - description: Metadata generated by DANDI cli
  465. endDate: '2025-05-09T14:38:46.147852-04:00'
  466. id: urn:uuid:f52d171c-a532-4876-8c9e-197162d46d22
  467. name: Metadata generation
  468. schemaKey: Activity
  469. startDate: '2025-05-09T14:38:46.147852-04:00'
  470. wasAssociatedWith:
  471. - identifier: RRID:SCR_019009
  472. name: DANDI Command Line Interface
  473. schemaKey: Software
  474. url: https://github.com/dandi/dandi-cli
  475. version: 0.66.7
  476. - description: Metadata generated by DANDI cli
  477. endDate: '2025-05-09T14:38:47.246195-04:00'
  478. id: urn:uuid:081e6d7f-2ef3-410e-bef3-d50703431344
  479. name: Metadata generation
  480. schemaKey: Activity
  481. startDate: '2025-05-09T14:38:47.246195-04:00'
  482. wasAssociatedWith:
  483. - identifier: RRID:SCR_019009
  484. name: DANDI Command Line Interface
  485. schemaKey: Software
  486. url: https://github.com/dandi/dandi-cli
  487. version: 0.66.7
  488. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  489. access:
  490. - schemaKey: AccessRequirements
  491. status: dandi:OpenAccess
  492. blobDateModified: '2025-04-30T16:33:07.058215-04:00'
  493. contentSize: 61600
  494. contentUrl:
  495. - https://api.dandiarchive.org/api/assets/1c4a715b-8cee-4fb2-95a3-ee4497be6257/download/
  496. - https://dandiarchive.s3.amazonaws.com/blobs/e79/040/e7904021-001f-4b04-bb4e-4926a2a45ca9
  497. dateModified: '2025-05-09T14:38:47.915228-04:00'
  498. digest:
  499. dandi:dandi-etag: 9f9c60c45de6198cbf330c94731a377d-1
  500. dandi:sha2-256: 3cda00940008e65ed8c5f268213dd27c603dd0858cb99e53a2c2127031fad38d
  501. encodingFormat: image/png
  502. id: dandiasset:1c4a715b-8cee-4fb2-95a3-ee4497be6257
  503. identifier: 1c4a715b-8cee-4fb2-95a3-ee4497be6257
  504. path: derivatives/labels/sub-rat3/micr/sub-rat3_sample-data10_SEM_seg-axonmyelin-manual.png
  505. schemaKey: Asset
  506. schemaVersion: 0.6.9
  507. wasGeneratedBy:
  508. - description: Metadata generated by DANDI cli
  509. endDate: '2025-05-09T14:38:46.731879-04:00'
  510. id: urn:uuid:2c4b5ba8-5442-4fe5-b76f-2639626b1afa
  511. name: Metadata generation
  512. schemaKey: Activity
  513. startDate: '2025-05-09T14:38:46.731879-04:00'
  514. wasAssociatedWith:
  515. - identifier: RRID:SCR_019009
  516. name: DANDI Command Line Interface
  517. schemaKey: Software
  518. url: https://github.com/dandi/dandi-cli
  519. version: 0.66.7
  520. - description: Metadata generated by DANDI cli
  521. endDate: '2025-05-09T14:38:47.915139-04:00'
  522. id: urn:uuid:f21f046c-c605-4515-9fca-ecec2310b4c0
  523. name: Metadata generation
  524. schemaKey: Activity
  525. startDate: '2025-05-09T14:38:47.915139-04:00'
  526. wasAssociatedWith:
  527. - identifier: RRID:SCR_019009
  528. name: DANDI Command Line Interface
  529. schemaKey: Software
  530. url: https://github.com/dandi/dandi-cli
  531. version: 0.66.7
  532. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  533. access:
  534. - schemaKey: AccessRequirements
  535. status: dandi:OpenAccess
  536. blobDateModified: '2025-04-30T16:37:22.916879-04:00'
  537. contentSize: 57382
  538. contentUrl:
  539. - https://api.dandiarchive.org/api/assets/d87308e0-a584-47ab-86f0-273ea76826f0/download/
  540. - https://dandiarchive.s3.amazonaws.com/blobs/ba3/ff6/ba3ff69c-3454-4021-8952-3b6e6d77d0ef
  541. dateModified: '2025-05-09T14:38:47.872971-04:00'
  542. digest:
  543. dandi:dandi-etag: dc591853280152db2dfc36974ddd1c2d-1
  544. dandi:sha2-256: 4deb82ac086bf8d760dd93aaece770b5d7607c61cdf11fca29a3c04a578093b4
  545. encodingFormat: image/png
  546. id: dandiasset:d87308e0-a584-47ab-86f0-273ea76826f0
  547. identifier: d87308e0-a584-47ab-86f0-273ea76826f0
  548. path: derivatives/labels/sub-rat3/micr/sub-rat3_sample-data10_SEM_seg-myelin-manual.png
  549. schemaKey: Asset
  550. schemaVersion: 0.6.9
  551. wasGeneratedBy:
  552. - description: Metadata generated by DANDI cli
  553. endDate: '2025-05-09T14:38:46.855749-04:00'
  554. id: urn:uuid:4d0e7884-b969-4337-81e3-3e6f1d31ac08
  555. name: Metadata generation
  556. schemaKey: Activity
  557. startDate: '2025-05-09T14:38:46.855749-04:00'
  558. wasAssociatedWith:
  559. - identifier: RRID:SCR_019009
  560. name: DANDI Command Line Interface
  561. schemaKey: Software
  562. url: https://github.com/dandi/dandi-cli
  563. version: 0.66.7
  564. - description: Metadata generated by DANDI cli
  565. endDate: '2025-05-09T14:38:47.872862-04:00'
  566. id: urn:uuid:544629f4-4b5d-4252-82dc-204a65127d25
  567. name: Metadata generation
  568. schemaKey: Activity
  569. startDate: '2025-05-09T14:38:47.872862-04:00'
  570. wasAssociatedWith:
  571. - identifier: RRID:SCR_019009
  572. name: DANDI Command Line Interface
  573. schemaKey: Software
  574. url: https://github.com/dandi/dandi-cli
  575. version: 0.66.7
  576. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  577. access:
  578. - schemaKey: AccessRequirements
  579. status: dandi:OpenAccess
  580. blobDateModified: '2025-04-30T16:37:23.510881-04:00'
  581. contentSize: 33093
  582. contentUrl:
  583. - https://api.dandiarchive.org/api/assets/b959c332-d414-42ba-8c5e-6aea17cc015d/download/
  584. - https://dandiarchive.s3.amazonaws.com/blobs/3a8/444/3a84444e-8727-47f6-9dda-2d363509a345
  585. dateModified: '2025-05-09T14:38:48.089104-04:00'
  586. digest:
  587. dandi:dandi-etag: e891bb25353c70eb287b884ccfc4810f-1
  588. dandi:sha2-256: 882c6d8ddb414ba60aa4d82a29ab0263302520b345b874292d2f59be8a308d95
  589. encodingFormat: image/png
  590. id: dandiasset:b959c332-d414-42ba-8c5e-6aea17cc015d
  591. identifier: b959c332-d414-42ba-8c5e-6aea17cc015d
  592. path: derivatives/labels/sub-rat3/micr/sub-rat3_sample-data11_SEM_seg-axon-manual.png
  593. schemaKey: Asset
  594. schemaVersion: 0.6.9
  595. wasGeneratedBy:
  596. - description: Metadata generated by DANDI cli
  597. endDate: '2025-05-09T14:38:47.348364-04:00'
  598. id: urn:uuid:89dcd0af-a87c-4fcd-b764-2c908a47a4ad
  599. name: Metadata generation
  600. schemaKey: Activity
  601. startDate: '2025-05-09T14:38:47.348364-04:00'
  602. wasAssociatedWith:
  603. - identifier: RRID:SCR_019009
  604. name: DANDI Command Line Interface
  605. schemaKey: Software
  606. url: https://github.com/dandi/dandi-cli
  607. version: 0.66.7
  608. - description: Metadata generated by DANDI cli
  609. endDate: '2025-05-09T14:38:48.089010-04:00'
  610. id: urn:uuid:dc61c95d-177c-4e18-913e-437bac0e736c
  611. name: Metadata generation
  612. schemaKey: Activity
  613. startDate: '2025-05-09T14:38:48.089010-04:00'
  614. wasAssociatedWith:
  615. - identifier: RRID:SCR_019009
  616. name: DANDI Command Line Interface
  617. schemaKey: Software
  618. url: https://github.com/dandi/dandi-cli
  619. version: 0.66.7
  620. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  621. access:
  622. - schemaKey: AccessRequirements
  623. status: dandi:OpenAccess
  624. blobDateModified: '2025-04-30T09:26:08.202486-04:00'
  625. contentSize: 53125
  626. contentUrl:
  627. - https://api.dandiarchive.org/api/assets/df49c777-9ae6-497f-87f1-59c0a1ecaafa/download/
  628. - https://dandiarchive.s3.amazonaws.com/blobs/5ef/9e1/5ef9e19e-5e73-4eb9-8173-e8a382f5c931
  629. dateModified: '2025-05-09T14:38:48.898288-04:00'
  630. digest:
  631. dandi:dandi-etag: 1f8944bb4a1c775c3f6fe46e3768ede0-1
  632. dandi:sha2-256: 14c233184d55dfba8019cd3ca26c3615d164e6fc3cb196627392c9b5ae79e39a
  633. encodingFormat: image/png
  634. id: dandiasset:df49c777-9ae6-497f-87f1-59c0a1ecaafa
  635. identifier: df49c777-9ae6-497f-87f1-59c0a1ecaafa
  636. path: derivatives/labels/sub-rat3/micr/sub-rat3_sample-data11_SEM_seg-axonmyelin-manual.png
  637. schemaKey: Asset
  638. schemaVersion: 0.6.9
  639. wasGeneratedBy:
  640. - description: Metadata generated by DANDI cli
  641. endDate: '2025-05-09T14:38:48.548626-04:00'
  642. id: urn:uuid:c08d9541-041f-4507-956c-465569f42fb7
  643. name: Metadata generation
  644. schemaKey: Activity
  645. startDate: '2025-05-09T14:38:48.548626-04:00'
  646. wasAssociatedWith:
  647. - identifier: RRID:SCR_019009
  648. name: DANDI Command Line Interface
  649. schemaKey: Software
  650. url: https://github.com/dandi/dandi-cli
  651. version: 0.66.7
  652. - description: Metadata generated by DANDI cli
  653. endDate: '2025-05-09T14:38:48.898221-04:00'
  654. id: urn:uuid:0a1be134-0509-4a5e-92bf-cf6fc5c47b54
  655. name: Metadata generation
  656. schemaKey: Activity
  657. startDate: '2025-05-09T14:38:48.898221-04:00'
  658. wasAssociatedWith:
  659. - identifier: RRID:SCR_019009
  660. name: DANDI Command Line Interface
  661. schemaKey: Software
  662. url: https://github.com/dandi/dandi-cli
  663. version: 0.66.7
  664. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  665. access:
  666. - schemaKey: AccessRequirements
  667. status: dandi:OpenAccess
  668. blobDateModified: '2025-04-30T16:37:23.534881-04:00'
  669. contentSize: 64614
  670. contentUrl:
  671. - https://api.dandiarchive.org/api/assets/38001317-9073-424e-a3b5-027232e8ab4e/download/
  672. - https://dandiarchive.s3.amazonaws.com/blobs/c42/2cf/c422cfdd-a027-47ab-8d5f-3708d8a3ea99
  673. dateModified: '2025-05-09T14:38:50.243771-04:00'
  674. digest:
  675. dandi:dandi-etag: 9c02ea6fe0621ca3670e6b65f4d7e260-1
  676. dandi:sha2-256: e778400dda08b7937d378cc2043cfaef80776f7ff112f991fff32ffdad6a2248
  677. encodingFormat: image/png
  678. id: dandiasset:38001317-9073-424e-a3b5-027232e8ab4e
  679. identifier: 38001317-9073-424e-a3b5-027232e8ab4e
  680. path: derivatives/labels/sub-rat3/micr/sub-rat3_sample-data11_SEM_seg-myelin-manual.png
  681. schemaKey: Asset
  682. schemaVersion: 0.6.9
  683. wasGeneratedBy:
  684. - description: Metadata generated by DANDI cli
  685. endDate: '2025-05-09T14:38:49.627729-04:00'
  686. id: urn:uuid:596e1f69-4615-46be-9380-170f1ab98f13
  687. name: Metadata generation
  688. schemaKey: Activity
  689. startDate: '2025-05-09T14:38:49.627729-04:00'
  690. wasAssociatedWith:
  691. - identifier: RRID:SCR_019009
  692. name: DANDI Command Line Interface
  693. schemaKey: Software
  694. url: https://github.com/dandi/dandi-cli
  695. version: 0.66.7
  696. - description: Metadata generated by DANDI cli
  697. endDate: '2025-05-09T14:38:50.243691-04:00'
  698. id: urn:uuid:d870c9aa-6283-4323-acb8-12df54037e8d
  699. name: Metadata generation
  700. schemaKey: Activity
  701. startDate: '2025-05-09T14:38:50.243691-04:00'
  702. wasAssociatedWith:
  703. - identifier: RRID:SCR_019009
  704. name: DANDI Command Line Interface
  705. schemaKey: Software
  706. url: https://github.com/dandi/dandi-cli
  707. version: 0.66.7
  708. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  709. access:
  710. - schemaKey: AccessRequirements
  711. status: dandi:OpenAccess
  712. blobDateModified: '2025-04-30T16:37:22.847879-04:00'
  713. contentSize: 29364
  714. contentUrl:
  715. - https://api.dandiarchive.org/api/assets/c61180c6-8225-4caf-b932-f1aba2e1e642/download/
  716. - https://dandiarchive.s3.amazonaws.com/blobs/ca0/a88/ca0a88ef-4a73-4a42-8b24-0046cb7b357f
  717. dateModified: '2025-05-09T14:38:51.719299-04:00'
  718. digest:
  719. dandi:dandi-etag: 4e6b0c76636f05f414e6af435e268f98-1
  720. dandi:sha2-256: 87e213d68a987abdee09690c9b706329cc10d5c5eea7b17d3ef6c8324967a997
  721. encodingFormat: image/png
  722. id: dandiasset:c61180c6-8225-4caf-b932-f1aba2e1e642
  723. identifier: c61180c6-8225-4caf-b932-f1aba2e1e642
  724. path: derivatives/labels/sub-rat3/micr/sub-rat3_sample-data9_SEM_seg-axon-manual.png
  725. schemaKey: Asset
  726. schemaVersion: 0.6.9
  727. wasGeneratedBy:
  728. - description: Metadata generated by DANDI cli
  729. endDate: '2025-05-09T14:38:50.505397-04:00'
  730. id: urn:uuid:7c3b7159-093e-4ba2-a858-bb4391314e1d
  731. name: Metadata generation
  732. schemaKey: Activity
  733. startDate: '2025-05-09T14:38:50.505397-04:00'
  734. wasAssociatedWith:
  735. - identifier: RRID:SCR_019009
  736. name: DANDI Command Line Interface
  737. schemaKey: Software
  738. url: https://github.com/dandi/dandi-cli
  739. version: 0.66.7
  740. - description: Metadata generated by DANDI cli
  741. endDate: '2025-05-09T14:38:51.719225-04:00'
  742. id: urn:uuid:24098474-44cd-483f-8b86-2f14f920685f
  743. name: Metadata generation
  744. schemaKey: Activity
  745. startDate: '2025-05-09T14:38:51.719225-04:00'
  746. wasAssociatedWith:
  747. - identifier: RRID:SCR_019009
  748. name: DANDI Command Line Interface
  749. schemaKey: Software
  750. url: https://github.com/dandi/dandi-cli
  751. version: 0.66.7
  752. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  753. access:
  754. - schemaKey: AccessRequirements
  755. status: dandi:OpenAccess
  756. blobDateModified: '2025-04-30T09:08:40.329560-04:00'
  757. contentSize: 48383
  758. contentUrl:
  759. - https://api.dandiarchive.org/api/assets/e88cd78c-9ab8-40b7-929d-7d9c18f2b60c/download/
  760. - https://dandiarchive.s3.amazonaws.com/blobs/741/57f/74157f9e-766f-4e16-be95-bf41bf4383c5
  761. dateModified: '2025-05-09T14:38:52.212853-04:00'
  762. digest:
  763. dandi:dandi-etag: 1ec8acebcb8bae25260173db4af14350-1
  764. dandi:sha2-256: c94dfba0a688ca89c7ec92a512e6974051b77a33dcb997a9b1597f0795d687aa
  765. encodingFormat: image/png
  766. id: dandiasset:e88cd78c-9ab8-40b7-929d-7d9c18f2b60c
  767. identifier: e88cd78c-9ab8-40b7-929d-7d9c18f2b60c
  768. path: derivatives/labels/sub-rat3/micr/sub-rat3_sample-data9_SEM_seg-axonmyelin-manual.png
  769. schemaKey: Asset
  770. schemaVersion: 0.6.9
  771. wasGeneratedBy:
  772. - description: Metadata generated by DANDI cli
  773. endDate: '2025-05-09T14:38:50.747316-04:00'
  774. id: urn:uuid:4a78ed68-9fbc-41f9-8fff-8a2f87092fd7
  775. name: Metadata generation
  776. schemaKey: Activity
  777. startDate: '2025-05-09T14:38:50.747316-04:00'
  778. wasAssociatedWith:
  779. - identifier: RRID:SCR_019009
  780. name: DANDI Command Line Interface
  781. schemaKey: Software
  782. url: https://github.com/dandi/dandi-cli
  783. version: 0.66.7
  784. - description: Metadata generated by DANDI cli
  785. endDate: '2025-05-09T14:38:52.212777-04:00'
  786. id: urn:uuid:063cde1c-b541-4aaf-a561-f15cd4dcbe0f
  787. name: Metadata generation
  788. schemaKey: Activity
  789. startDate: '2025-05-09T14:38:52.212777-04:00'
  790. wasAssociatedWith:
  791. - identifier: RRID:SCR_019009
  792. name: DANDI Command Line Interface
  793. schemaKey: Software
  794. url: https://github.com/dandi/dandi-cli
  795. version: 0.66.7
  796. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  797. access:
  798. - schemaKey: AccessRequirements
  799. status: dandi:OpenAccess
  800. blobDateModified: '2022-02-21T15:05:29.484414-05:00'
  801. contentSize: 20358
  802. contentUrl:
  803. - https://api.dandiarchive.org/api/assets/92eedbd2-dc7c-4e51-ac15-84f092455a7c/download/
  804. - https://dandiarchive.s3.amazonaws.com/blobs/253/90e/25390eb0-481a-488d-8727-a95d93a671cc
  805. dateModified: '2025-05-09T14:38:52.859623-04:00'
  806. digest:
  807. dandi:dandi-etag: 20575b91656f22d41cffd34e12566007-1
  808. dandi:sha2-256: db5e071465cae73be7fa9644242d802df560c0f63c8ebfb2cd3d3759333f5b3f
  809. encodingFormat: image/png
  810. id: dandiasset:92eedbd2-dc7c-4e51-ac15-84f092455a7c
  811. identifier: 92eedbd2-dc7c-4e51-ac15-84f092455a7c
  812. path: derivatives/labels/sub-rat4/micr/sub-rat4_sample-data12_SEM_seg-axon-manual.png
  813. schemaKey: Asset
  814. schemaVersion: 0.6.9
  815. wasGeneratedBy:
  816. - description: Metadata generated by DANDI cli
  817. endDate: '2025-05-09T14:38:51.784732-04:00'
  818. id: urn:uuid:2b7b0fee-5d0c-4862-a80e-039a4fed3112
  819. name: Metadata generation
  820. schemaKey: Activity
  821. startDate: '2025-05-09T14:38:51.784732-04:00'
  822. wasAssociatedWith:
  823. - identifier: RRID:SCR_019009
  824. name: DANDI Command Line Interface
  825. schemaKey: Software
  826. url: https://github.com/dandi/dandi-cli
  827. version: 0.66.7
  828. - description: Metadata generated by DANDI cli
  829. endDate: '2025-05-09T14:38:52.859542-04:00'
  830. id: urn:uuid:fec17b7e-452a-4346-adfb-c1031bb49a64
  831. name: Metadata generation
  832. schemaKey: Activity
  833. startDate: '2025-05-09T14:38:52.859542-04:00'
  834. wasAssociatedWith:
  835. - identifier: RRID:SCR_019009
  836. name: DANDI Command Line Interface
  837. schemaKey: Software
  838. url: https://github.com/dandi/dandi-cli
  839. version: 0.66.7
  840. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  841. access:
  842. - schemaKey: AccessRequirements
  843. status: dandi:OpenAccess
  844. blobDateModified: '2025-04-30T16:37:22.859879-04:00'
  845. contentSize: 56237
  846. contentUrl:
  847. - https://api.dandiarchive.org/api/assets/8b51afd3-756b-437b-9a50-584ec49e9814/download/
  848. - https://dandiarchive.s3.amazonaws.com/blobs/d1e/45c/d1e45cb5-1fd1-44b6-b57a-4c08d1b724cf
  849. dateModified: '2025-05-09T14:38:52.977569-04:00'
  850. digest:
  851. dandi:dandi-etag: 0f563aa5829e1686a204dba3da70307a-1
  852. dandi:sha2-256: b75b87628fdfee8ed89b1812ecc6c9e9dc8b4a807ccadf422cf1f740148e5ec0
  853. encodingFormat: image/png
  854. id: dandiasset:8b51afd3-756b-437b-9a50-584ec49e9814
  855. identifier: 8b51afd3-756b-437b-9a50-584ec49e9814
  856. path: derivatives/labels/sub-rat3/micr/sub-rat3_sample-data9_SEM_seg-myelin-manual.png
  857. schemaKey: Asset
  858. schemaVersion: 0.6.9
  859. wasGeneratedBy:
  860. - description: Metadata generated by DANDI cli
  861. endDate: '2025-05-09T14:38:51.661285-04:00'
  862. id: urn:uuid:08dc64d8-71a6-426a-b752-aa259677118f
  863. name: Metadata generation
  864. schemaKey: Activity
  865. startDate: '2025-05-09T14:38:51.661285-04:00'
  866. wasAssociatedWith:
  867. - identifier: RRID:SCR_019009
  868. name: DANDI Command Line Interface
  869. schemaKey: Software
  870. url: https://github.com/dandi/dandi-cli
  871. version: 0.66.7
  872. - description: Metadata generated by DANDI cli
  873. endDate: '2025-05-09T14:38:52.977477-04:00'
  874. id: urn:uuid:fc877e08-f01a-4926-968b-2614b2564e95
  875. name: Metadata generation
  876. schemaKey: Activity
  877. startDate: '2025-05-09T14:38:52.977477-04:00'
  878. wasAssociatedWith:
  879. - identifier: RRID:SCR_019009
  880. name: DANDI Command Line Interface
  881. schemaKey: Software
  882. url: https://github.com/dandi/dandi-cli
  883. version: 0.66.7
  884. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  885. access:
  886. - schemaKey: AccessRequirements
  887. status: dandi:OpenAccess
  888. blobDateModified: '2022-02-21T15:05:29.484414-05:00'
  889. contentSize: 44241
  890. contentUrl:
  891. - https://api.dandiarchive.org/api/assets/ed76ec94-a9f0-43ab-a671-e09420ce396b/download/
  892. - https://dandiarchive.s3.amazonaws.com/blobs/bca/f58/bcaf58c7-2f1d-4602-9cd3-39c672f2ceda
  893. dateModified: '2025-05-09T14:38:54.357839-04:00'
  894. digest:
  895. dandi:dandi-etag: 8c12d7c4c5afbf7d4cced9a4b85b1dcf-1
  896. dandi:sha2-256: c00e28b13e206c05dfae4cfc9d4b4c51016a2771624ea1b0b9a7e79826268c53
  897. encodingFormat: image/png
  898. id: dandiasset:ed76ec94-a9f0-43ab-a671-e09420ce396b
  899. identifier: ed76ec94-a9f0-43ab-a671-e09420ce396b
  900. path: derivatives/labels/sub-rat4/micr/sub-rat4_sample-data12_SEM_seg-axonmyelin-manual.png
  901. schemaKey: Asset
  902. schemaVersion: 0.6.9
  903. wasGeneratedBy:
  904. - description: Metadata generated by DANDI cli
  905. endDate: '2025-05-09T14:38:53.649072-04:00'
  906. id: urn:uuid:e5aec6d2-2ecc-4413-98ce-4ae3878e2d92
  907. name: Metadata generation
  908. schemaKey: Activity
  909. startDate: '2025-05-09T14:38:53.649072-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. - description: Metadata generated by DANDI cli
  917. endDate: '2025-05-09T14:38:54.357742-04:00'
  918. id: urn:uuid:38660653-1024-4928-ae58-d18c2fc2ab83
  919. name: Metadata generation
  920. schemaKey: Activity
  921. startDate: '2025-05-09T14:38:54.357742-04:00'
  922. wasAssociatedWith:
  923. - identifier: RRID:SCR_019009
  924. name: DANDI Command Line Interface
  925. schemaKey: Software
  926. url: https://github.com/dandi/dandi-cli
  927. version: 0.66.7
  928. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  929. access:
  930. - schemaKey: AccessRequirements
  931. status: dandi:OpenAccess
  932. blobDateModified: '2022-02-21T15:05:29.485414-05:00'
  933. contentSize: 41623
  934. contentUrl:
  935. - https://api.dandiarchive.org/api/assets/348cbf79-c5ac-41fe-aa76-dadf0a8d6f11/download/
  936. - https://dandiarchive.s3.amazonaws.com/blobs/0c5/440/0c544068-c71d-4a79-8af7-0a1ed5d7722a
  937. dateModified: '2025-05-09T14:38:55.363941-04:00'
  938. digest:
  939. dandi:dandi-etag: 6a60bd28116d99f64f035677674a28d9-1
  940. dandi:sha2-256: ead5eb0202d9320eb748ca269a40146180f52a3a8ff3d27b5b6df831c6b0fef6
  941. encodingFormat: image/png
  942. id: dandiasset:348cbf79-c5ac-41fe-aa76-dadf0a8d6f11
  943. identifier: 348cbf79-c5ac-41fe-aa76-dadf0a8d6f11
  944. path: derivatives/labels/sub-rat4/micr/sub-rat4_sample-data12_SEM_seg-myelin-manual.png
  945. schemaKey: Asset
  946. schemaVersion: 0.6.9
  947. wasGeneratedBy:
  948. - description: Metadata generated by DANDI cli
  949. endDate: '2025-05-09T14:38:54.492405-04:00'
  950. id: urn:uuid:c872bef1-c66d-49ee-aa52-421b5c267802
  951. name: Metadata generation
  952. schemaKey: Activity
  953. startDate: '2025-05-09T14:38:54.492405-04:00'
  954. wasAssociatedWith:
  955. - identifier: RRID:SCR_019009
  956. name: DANDI Command Line Interface
  957. schemaKey: Software
  958. url: https://github.com/dandi/dandi-cli
  959. version: 0.66.7
  960. - description: Metadata generated by DANDI cli
  961. endDate: '2025-05-09T14:38:55.363829-04:00'
  962. id: urn:uuid:a5211e31-8d4b-4bf2-acf1-589961d85ce2
  963. name: Metadata generation
  964. schemaKey: Activity
  965. startDate: '2025-05-09T14:38:55.363829-04:00'
  966. wasAssociatedWith:
  967. - identifier: RRID:SCR_019009
  968. name: DANDI Command Line Interface
  969. schemaKey: Software
  970. url: https://github.com/dandi/dandi-cli
  971. version: 0.66.7
  972. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  973. access:
  974. - schemaKey: AccessRequirements
  975. status: dandi:OpenAccess
  976. blobDateModified: '2025-04-30T16:37:23.357881-04:00'
  977. contentSize: 164063
  978. contentUrl:
  979. - https://api.dandiarchive.org/api/assets/d28c7854-3062-4bc9-94d3-b8433f7e1d37/download/
  980. - https://dandiarchive.s3.amazonaws.com/blobs/848/0ae/8480aee6-2b37-496d-b929-7145775d37d1
  981. dateModified: '2025-05-09T14:38:56.268702-04:00'
  982. digest:
  983. dandi:dandi-etag: 1d5b42d8e8b9ee5066145aa674d8851c-1
  984. dandi:sha2-256: e4d784804fa0bae91ed7ff0be6c583f90681c51a6a2e0e1f7e47f7495fcd4420
  985. encodingFormat: image/png
  986. id: dandiasset:d28c7854-3062-4bc9-94d3-b8433f7e1d37
  987. identifier: d28c7854-3062-4bc9-94d3-b8433f7e1d37
  988. path: derivatives/labels/sub-rat5/micr/sub-rat5_sample-data14_SEM_seg-axon-manual.png
  989. schemaKey: Asset
  990. schemaVersion: 0.6.9
  991. wasGeneratedBy:
  992. - description: Metadata generated by DANDI cli
  993. endDate: '2025-05-09T14:38:55.279580-04:00'
  994. id: urn:uuid:3a3c916a-3412-40ef-826c-aeff3a0bdd9e
  995. name: Metadata generation
  996. schemaKey: Activity
  997. startDate: '2025-05-09T14:38:55.279580-04:00'
  998. wasAssociatedWith:
  999. - identifier: RRID:SCR_019009
  1000. name: DANDI Command Line Interface
  1001. schemaKey: Software
  1002. url: https://github.com/dandi/dandi-cli
  1003. version: 0.66.7
  1004. - description: Metadata generated by DANDI cli
  1005. endDate: '2025-05-09T14:38:56.268618-04:00'
  1006. id: urn:uuid:16fee479-7b3e-4698-91b3-d348c3f54243
  1007. name: Metadata generation
  1008. schemaKey: Activity
  1009. startDate: '2025-05-09T14:38:56.268618-04:00'
  1010. wasAssociatedWith:
  1011. - identifier: RRID:SCR_019009
  1012. name: DANDI Command Line Interface
  1013. schemaKey: Software
  1014. url: https://github.com/dandi/dandi-cli
  1015. version: 0.66.7
  1016. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  1017. access:
  1018. - schemaKey: AccessRequirements
  1019. status: dandi:OpenAccess
  1020. blobDateModified: '2025-04-30T14:02:47.249652-04:00'
  1021. contentSize: 274594
  1022. contentUrl:
  1023. - https://api.dandiarchive.org/api/assets/69d54c2b-5270-4b7c-a5d0-46310131de25/download/
  1024. - https://dandiarchive.s3.amazonaws.com/blobs/aeb/64e/aeb64e52-cb9f-4253-bbc6-9366dc0d8f75
  1025. dateModified: '2025-05-09T14:38:56.335365-04:00'
  1026. digest:
  1027. dandi:dandi-etag: 6db9571e0849e0b0114fddc4ce631ff9-1
  1028. dandi:sha2-256: 4080cdb07f5ada0da413744256ca888e8f88bb72101cdce512fdd309a461cf24
  1029. encodingFormat: image/png
  1030. id: dandiasset:69d54c2b-5270-4b7c-a5d0-46310131de25
  1031. identifier: 69d54c2b-5270-4b7c-a5d0-46310131de25
  1032. path: derivatives/labels/sub-rat5/micr/sub-rat5_sample-data14_SEM_seg-axonmyelin-manual.png
  1033. schemaKey: Asset
  1034. schemaVersion: 0.6.9
  1035. wasGeneratedBy:
  1036. - description: Metadata generated by DANDI cli
  1037. endDate: '2025-05-09T14:38:55.455607-04:00'
  1038. id: urn:uuid:4fc46301-aafb-4a7f-9d79-f10c5955f01a
  1039. name: Metadata generation
  1040. schemaKey: Activity
  1041. startDate: '2025-05-09T14:38:55.455607-04:00'
  1042. wasAssociatedWith:
  1043. - identifier: RRID:SCR_019009
  1044. name: DANDI Command Line Interface
  1045. schemaKey: Software
  1046. url: https://github.com/dandi/dandi-cli
  1047. version: 0.66.7
  1048. - description: Metadata generated by DANDI cli
  1049. endDate: '2025-05-09T14:38:56.335296-04:00'
  1050. id: urn:uuid:c78f2857-7fc7-4ea4-9367-f1a40f154caf
  1051. name: Metadata generation
  1052. schemaKey: Activity
  1053. startDate: '2025-05-09T14:38:56.335296-04:00'
  1054. wasAssociatedWith:
  1055. - identifier: RRID:SCR_019009
  1056. name: DANDI Command Line Interface
  1057. schemaKey: Software
  1058. url: https://github.com/dandi/dandi-cli
  1059. version: 0.66.7
  1060. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  1061. access:
  1062. - schemaKey: AccessRequirements
  1063. status: dandi:OpenAccess
  1064. blobDateModified: '2025-04-30T16:37:23.441881-04:00'
  1065. contentSize: 316540
  1066. contentUrl:
  1067. - https://api.dandiarchive.org/api/assets/f53cd2f7-7914-40b5-aee9-2a0714460d66/download/
  1068. - https://dandiarchive.s3.amazonaws.com/blobs/752/5a5/7525a5e7-e75d-40f0-8872-0213d45466da
  1069. dateModified: '2025-05-09T14:38:56.308029-04:00'
  1070. digest:
  1071. dandi:dandi-etag: aa696563807012cfa52cbf597c9799e0-1
  1072. dandi:sha2-256: 4b4848744450e8a8a64dcba860fd83114ec0904089691e80fcb0e255ea157a78
  1073. encodingFormat: image/png
  1074. id: dandiasset:f53cd2f7-7914-40b5-aee9-2a0714460d66
  1075. identifier: f53cd2f7-7914-40b5-aee9-2a0714460d66
  1076. path: derivatives/labels/sub-rat5/micr/sub-rat5_sample-data14_SEM_seg-myelin-manual.png
  1077. schemaKey: Asset
  1078. schemaVersion: 0.6.9
  1079. wasGeneratedBy:
  1080. - description: Metadata generated by DANDI cli
  1081. endDate: '2025-05-09T14:38:55.684052-04:00'
  1082. id: urn:uuid:433f8adf-e5b4-4ce1-aa84-ee2afacdef08
  1083. name: Metadata generation
  1084. schemaKey: Activity
  1085. startDate: '2025-05-09T14:38:55.684052-04:00'
  1086. wasAssociatedWith:
  1087. - identifier: RRID:SCR_019009
  1088. name: DANDI Command Line Interface
  1089. schemaKey: Software
  1090. url: https://github.com/dandi/dandi-cli
  1091. version: 0.66.7
  1092. - description: Metadata generated by DANDI cli
  1093. endDate: '2025-05-09T14:38:56.307951-04:00'
  1094. id: urn:uuid:10ddb94c-adf0-4435-bdd0-794ffaaeff01
  1095. name: Metadata generation
  1096. schemaKey: Activity
  1097. startDate: '2025-05-09T14:38:56.307951-04:00'
  1098. wasAssociatedWith:
  1099. - identifier: RRID:SCR_019009
  1100. name: DANDI Command Line Interface
  1101. schemaKey: Software
  1102. url: https://github.com/dandi/dandi-cli
  1103. version: 0.66.7
  1104. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  1105. access:
  1106. - schemaKey: AccessRequirements
  1107. status: dandi:OpenAccess
  1108. blobDateModified: '2025-04-30T16:37:22.981880-04:00'
  1109. contentSize: 36643
  1110. contentUrl:
  1111. - https://api.dandiarchive.org/api/assets/2c7dbf20-011e-494f-b8ac-f77b0abc87a5/download/
  1112. - https://dandiarchive.s3.amazonaws.com/blobs/6ff/1aa/6ff1aa04-9626-4477-9d36-3537bef6dd7c
  1113. dateModified: '2025-05-09T14:38:56.932365-04:00'
  1114. digest:
  1115. dandi:dandi-etag: df9c8637031dc6f757f17108eedb5bfb-1
  1116. dandi:sha2-256: 52fb60fb7e71dd3b43a7e43ffdb35e465f8b472efddfcdb35bd2659927789098
  1117. encodingFormat: image/png
  1118. id: dandiasset:2c7dbf20-011e-494f-b8ac-f77b0abc87a5
  1119. identifier: 2c7dbf20-011e-494f-b8ac-f77b0abc87a5
  1120. path: derivatives/labels/sub-rat6/micr/sub-rat6_sample-data15_SEM_seg-axon-manual.png
  1121. schemaKey: Asset
  1122. schemaVersion: 0.6.9
  1123. wasGeneratedBy:
  1124. - description: Metadata generated by DANDI cli
  1125. endDate: '2025-05-09T14:38:56.707125-04:00'
  1126. id: urn:uuid:09d64277-7f08-4301-9262-7bd610dc7932
  1127. name: Metadata generation
  1128. schemaKey: Activity
  1129. startDate: '2025-05-09T14:38:56.707125-04:00'
  1130. wasAssociatedWith:
  1131. - identifier: RRID:SCR_019009
  1132. name: DANDI Command Line Interface
  1133. schemaKey: Software
  1134. url: https://github.com/dandi/dandi-cli
  1135. version: 0.66.7
  1136. - description: Metadata generated by DANDI cli
  1137. endDate: '2025-05-09T14:38:56.932286-04:00'
  1138. id: urn:uuid:6237f4bb-8528-436b-a996-7c4f06a70811
  1139. name: Metadata generation
  1140. schemaKey: Activity
  1141. startDate: '2025-05-09T14:38:56.932286-04:00'
  1142. wasAssociatedWith:
  1143. - identifier: RRID:SCR_019009
  1144. name: DANDI Command Line Interface
  1145. schemaKey: Software
  1146. url: https://github.com/dandi/dandi-cli
  1147. version: 0.66.7
  1148. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  1149. access:
  1150. - schemaKey: AccessRequirements
  1151. status: dandi:OpenAccess
  1152. blobDateModified: '2025-04-30T14:14:49.836987-04:00'
  1153. contentSize: 63100
  1154. contentUrl:
  1155. - https://api.dandiarchive.org/api/assets/860dfa45-2161-49ca-948a-e4fc40c47549/download/
  1156. - https://dandiarchive.s3.amazonaws.com/blobs/cc1/e07/cc1e0757-b6cb-4087-856f-aa3a8067fdfb
  1157. dateModified: '2025-05-09T14:38:57.563398-04:00'
  1158. digest:
  1159. dandi:dandi-etag: e0d949a113a8a23810fbc91f041fdafa-1
  1160. dandi:sha2-256: b571293e910b65bfb7995427694f3083e69c5d2e5c51025f2fad0e8cb04075e4
  1161. encodingFormat: image/png
  1162. id: dandiasset:860dfa45-2161-49ca-948a-e4fc40c47549
  1163. identifier: 860dfa45-2161-49ca-948a-e4fc40c47549
  1164. path: derivatives/labels/sub-rat6/micr/sub-rat6_sample-data15_SEM_seg-axonmyelin-manual.png
  1165. schemaKey: Asset
  1166. schemaVersion: 0.6.9
  1167. wasGeneratedBy:
  1168. - description: Metadata generated by DANDI cli
  1169. endDate: '2025-05-09T14:38:57.265766-04:00'
  1170. id: urn:uuid:332a3a5f-c1b1-4557-80c5-3381b5f4dfc8
  1171. name: Metadata generation
  1172. schemaKey: Activity
  1173. startDate: '2025-05-09T14:38:57.265766-04:00'
  1174. wasAssociatedWith:
  1175. - identifier: RRID:SCR_019009
  1176. name: DANDI Command Line Interface
  1177. schemaKey: Software
  1178. url: https://github.com/dandi/dandi-cli
  1179. version: 0.66.7
  1180. - description: Metadata generated by DANDI cli
  1181. endDate: '2025-05-09T14:38:57.563319-04:00'
  1182. id: urn:uuid:236b45eb-52b8-49c5-b0a4-5b67b5eaca0c
  1183. name: Metadata generation
  1184. schemaKey: Activity
  1185. startDate: '2025-05-09T14:38:57.563319-04:00'
  1186. wasAssociatedWith:
  1187. - identifier: RRID:SCR_019009
  1188. name: DANDI Command Line Interface
  1189. schemaKey: Software
  1190. url: https://github.com/dandi/dandi-cli
  1191. version: 0.66.7
  1192. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  1193. access:
  1194. - schemaKey: AccessRequirements
  1195. status: dandi:OpenAccess
  1196. blobDateModified: '2025-04-30T16:37:23.000880-04:00'
  1197. contentSize: 75098
  1198. contentUrl:
  1199. - https://api.dandiarchive.org/api/assets/85a2ee22-d10d-4792-9720-f231754fbd1e/download/
  1200. - https://dandiarchive.s3.amazonaws.com/blobs/1e0/485/1e0485b2-f30a-4c60-9bf3-c9ddbaca7503
  1201. dateModified: '2025-05-09T14:38:58.552866-04:00'
  1202. digest:
  1203. dandi:dandi-etag: 143c6c18e3cdce6769ceb648eea0547b-1
  1204. dandi:sha2-256: d7a59fed498211225eed3262fc4e25fab40e154b8a644a0db7288ab7c8a21db3
  1205. encodingFormat: image/png
  1206. id: dandiasset:85a2ee22-d10d-4792-9720-f231754fbd1e
  1207. identifier: 85a2ee22-d10d-4792-9720-f231754fbd1e
  1208. path: derivatives/labels/sub-rat6/micr/sub-rat6_sample-data15_SEM_seg-myelin-manual.png
  1209. schemaKey: Asset
  1210. schemaVersion: 0.6.9
  1211. wasGeneratedBy:
  1212. - description: Metadata generated by DANDI cli
  1213. endDate: '2025-05-09T14:38:58.000264-04:00'
  1214. id: urn:uuid:bf4446c6-934e-4674-a58a-f4e3235142cc
  1215. name: Metadata generation
  1216. schemaKey: Activity
  1217. startDate: '2025-05-09T14:38:58.000264-04:00'
  1218. wasAssociatedWith:
  1219. - identifier: RRID:SCR_019009
  1220. name: DANDI Command Line Interface
  1221. schemaKey: Software
  1222. url: https://github.com/dandi/dandi-cli
  1223. version: 0.66.7
  1224. - description: Metadata generated by DANDI cli
  1225. endDate: '2025-05-09T14:38:58.552786-04:00'
  1226. id: urn:uuid:1f43638e-a6b5-495a-ae46-b014554892f0
  1227. name: Metadata generation
  1228. schemaKey: Activity
  1229. startDate: '2025-05-09T14:38:58.552786-04:00'
  1230. wasAssociatedWith:
  1231. - identifier: RRID:SCR_019009
  1232. name: DANDI Command Line Interface
  1233. schemaKey: Software
  1234. url: https://github.com/dandi/dandi-cli
  1235. version: 0.66.7
  1236. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  1237. access:
  1238. - schemaKey: AccessRequirements
  1239. status: dandi:OpenAccess
  1240. blobDateModified: '2022-02-21T15:05:29.489414-05:00'
  1241. contentSize: 83288
  1242. contentUrl:
  1243. - https://api.dandiarchive.org/api/assets/866de7ab-d1a4-4299-9e4b-e92ec8721d19/download/
  1244. - https://dandiarchive.s3.amazonaws.com/blobs/f4d/30d/f4d30d80-5b7a-45c8-b92e-61f11ca8f62b
  1245. dateModified: '2025-05-09T14:38:59.101471-04:00'
  1246. digest:
  1247. dandi:dandi-etag: 12b2d0d6b7b45022ab0c7ad7551b5c6c-1
  1248. dandi:sha2-256: a11566c978c555bbf2999c16fa8ced744243da4025044b359c01338cc0ed7207
  1249. encodingFormat: image/png
  1250. id: dandiasset:866de7ab-d1a4-4299-9e4b-e92ec8721d19
  1251. identifier: 866de7ab-d1a4-4299-9e4b-e92ec8721d19
  1252. path: derivatives/labels/sub-rat7/micr/sub-rat7_sample-Maxo03img60_SEM_seg-axon-manual.png
  1253. schemaKey: Asset
  1254. schemaVersion: 0.6.9
  1255. wasGeneratedBy:
  1256. - description: Metadata generated by DANDI cli
  1257. endDate: '2025-05-09T14:38:58.431341-04:00'
  1258. id: urn:uuid:039a6d07-d337-435c-a501-a3708b21fc7f
  1259. name: Metadata generation
  1260. schemaKey: Activity
  1261. startDate: '2025-05-09T14:38:58.431341-04:00'
  1262. wasAssociatedWith:
  1263. - identifier: RRID:SCR_019009
  1264. name: DANDI Command Line Interface
  1265. schemaKey: Software
  1266. url: https://github.com/dandi/dandi-cli
  1267. version: 0.66.7
  1268. - description: Metadata generated by DANDI cli
  1269. endDate: '2025-05-09T14:38:59.101392-04:00'
  1270. id: urn:uuid:0863c50e-9219-4c60-a1e6-80863cb9ca68
  1271. name: Metadata generation
  1272. schemaKey: Activity
  1273. startDate: '2025-05-09T14:38:59.101392-04:00'
  1274. wasAssociatedWith:
  1275. - identifier: RRID:SCR_019009
  1276. name: DANDI Command Line Interface
  1277. schemaKey: Software
  1278. url: https://github.com/dandi/dandi-cli
  1279. version: 0.66.7
  1280. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  1281. access:
  1282. - schemaKey: AccessRequirements
  1283. status: dandi:OpenAccess
  1284. blobDateModified: '2022-02-21T15:05:29.489414-05:00'
  1285. contentSize: 163464
  1286. contentUrl:
  1287. - https://api.dandiarchive.org/api/assets/b8828072-02dc-49ab-b404-c4c7e9350b48/download/
  1288. - https://dandiarchive.s3.amazonaws.com/blobs/686/303/68630313-fdd9-4b94-970e-9909d82e2e72
  1289. dateModified: '2025-05-09T14:38:59.249308-04:00'
  1290. digest:
  1291. dandi:dandi-etag: a9760d6a9c9e6168a5a042a730eb2965-1
  1292. dandi:sha2-256: 2f698f2760e9b725385ab2b67287d169857e0b29ac0014e11cd31a420f203ad1
  1293. encodingFormat: image/png
  1294. id: dandiasset:b8828072-02dc-49ab-b404-c4c7e9350b48
  1295. identifier: b8828072-02dc-49ab-b404-c4c7e9350b48
  1296. path: derivatives/labels/sub-rat7/micr/sub-rat7_sample-Maxo03img60_SEM_seg-axonmyelin-manual.png
  1297. schemaKey: Asset
  1298. schemaVersion: 0.6.9
  1299. wasGeneratedBy:
  1300. - description: Metadata generated by DANDI cli
  1301. endDate: '2025-05-09T14:38:58.468082-04:00'
  1302. id: urn:uuid:5cf09bf6-41be-4c1e-a4ec-8614cc4253f8
  1303. name: Metadata generation
  1304. schemaKey: Activity
  1305. startDate: '2025-05-09T14:38:58.468082-04:00'
  1306. wasAssociatedWith:
  1307. - identifier: RRID:SCR_019009
  1308. name: DANDI Command Line Interface
  1309. schemaKey: Software
  1310. url: https://github.com/dandi/dandi-cli
  1311. version: 0.66.7
  1312. - description: Metadata generated by DANDI cli
  1313. endDate: '2025-05-09T14:38:59.249253-04:00'
  1314. id: urn:uuid:f12aeaa8-4cd8-4b26-934b-03082c266b6d
  1315. name: Metadata generation
  1316. schemaKey: Activity
  1317. startDate: '2025-05-09T14:38:59.249253-04:00'
  1318. wasAssociatedWith:
  1319. - identifier: RRID:SCR_019009
  1320. name: DANDI Command Line Interface
  1321. schemaKey: Software
  1322. url: https://github.com/dandi/dandi-cli
  1323. version: 0.66.7
  1324. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  1325. access:
  1326. - schemaKey: AccessRequirements
  1327. status: dandi:OpenAccess
  1328. blobDateModified: '2022-02-21T15:05:29.490414-05:00'
  1329. contentSize: 29129
  1330. contentUrl:
  1331. - https://api.dandiarchive.org/api/assets/f2114fd3-4af3-4ff1-b218-129fd93fc5d2/download/
  1332. - https://dandiarchive.s3.amazonaws.com/blobs/50a/df0/50adf012-e6aa-472e-bc9c-5875020924d5
  1333. dateModified: '2025-05-09T14:38:59.895563-04:00'
  1334. digest:
  1335. dandi:dandi-etag: 17e819addba159466028b01b2eaac363-1
  1336. dandi:sha2-256: e8ffbee8a9d006ebc29b8a67a77f261c4062db5927161866291a4736f23555bc
  1337. encodingFormat: image/png
  1338. id: dandiasset:f2114fd3-4af3-4ff1-b218-129fd93fc5d2
  1339. identifier: f2114fd3-4af3-4ff1-b218-129fd93fc5d2
  1340. path: derivatives/labels/sub-rat8/micr/sub-rat8_sample-V915_SEM_seg-axon-manual.png
  1341. schemaKey: Asset
  1342. schemaVersion: 0.6.9
  1343. wasGeneratedBy:
  1344. - description: Metadata generated by DANDI cli
  1345. endDate: '2025-05-09T14:38:59.448562-04:00'
  1346. id: urn:uuid:1f04935e-a500-426d-8e11-75b0f1c8c896
  1347. name: Metadata generation
  1348. schemaKey: Activity
  1349. startDate: '2025-05-09T14:38:59.448562-04:00'
  1350. wasAssociatedWith:
  1351. - identifier: RRID:SCR_019009
  1352. name: DANDI Command Line Interface
  1353. schemaKey: Software
  1354. url: https://github.com/dandi/dandi-cli
  1355. version: 0.66.7
  1356. - description: Metadata generated by DANDI cli
  1357. endDate: '2025-05-09T14:38:59.895503-04:00'
  1358. id: urn:uuid:648a2df1-10d0-4422-a23f-40e82a944744
  1359. name: Metadata generation
  1360. schemaKey: Activity
  1361. startDate: '2025-05-09T14:38:59.895503-04:00'
  1362. wasAssociatedWith:
  1363. - identifier: RRID:SCR_019009
  1364. name: DANDI Command Line Interface
  1365. schemaKey: Software
  1366. url: https://github.com/dandi/dandi-cli
  1367. version: 0.66.7
  1368. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  1369. access:
  1370. - schemaKey: AccessRequirements
  1371. status: dandi:OpenAccess
  1372. blobDateModified: '2022-02-21T15:05:29.490414-05:00'
  1373. contentSize: 156656
  1374. contentUrl:
  1375. - https://api.dandiarchive.org/api/assets/2045f93b-4f31-463d-81f8-2cb2bf267fd2/download/
  1376. - https://dandiarchive.s3.amazonaws.com/blobs/545/f4e/545f4e85-5579-4bd2-a968-f27b70a4a642
  1377. dateModified: '2025-05-09T14:38:59.514479-04:00'
  1378. digest:
  1379. dandi:dandi-etag: 1be99c15f32d1e91b9ee777de745e0cd-1
  1380. dandi:sha2-256: 4f7f573d4428e39b8949bad9ffa8911f140c6d72555ece4920ec7f768f47459d
  1381. encodingFormat: image/png
  1382. id: dandiasset:2045f93b-4f31-463d-81f8-2cb2bf267fd2
  1383. identifier: 2045f93b-4f31-463d-81f8-2cb2bf267fd2
  1384. path: derivatives/labels/sub-rat7/micr/sub-rat7_sample-Maxo03img60_SEM_seg-myelin-manual.png
  1385. schemaKey: Asset
  1386. schemaVersion: 0.6.9
  1387. wasGeneratedBy:
  1388. - description: Metadata generated by DANDI cli
  1389. endDate: '2025-05-09T14:38:58.914126-04:00'
  1390. id: urn:uuid:96fa3ac0-e5ca-472a-a0c8-d409c2f0ba64
  1391. name: Metadata generation
  1392. schemaKey: Activity
  1393. startDate: '2025-05-09T14:38:58.914126-04:00'
  1394. wasAssociatedWith:
  1395. - identifier: RRID:SCR_019009
  1396. name: DANDI Command Line Interface
  1397. schemaKey: Software
  1398. url: https://github.com/dandi/dandi-cli
  1399. version: 0.66.7
  1400. - description: Metadata generated by DANDI cli
  1401. endDate: '2025-05-09T14:38:59.514422-04:00'
  1402. id: urn:uuid:c1a95344-74a3-43c7-9a4a-edda82c4111c
  1403. name: Metadata generation
  1404. schemaKey: Activity
  1405. startDate: '2025-05-09T14:38:59.514422-04:00'
  1406. wasAssociatedWith:
  1407. - identifier: RRID:SCR_019009
  1408. name: DANDI Command Line Interface
  1409. schemaKey: Software
  1410. url: https://github.com/dandi/dandi-cli
  1411. version: 0.66.7
  1412. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  1413. access:
  1414. - schemaKey: AccessRequirements
  1415. status: dandi:OpenAccess
  1416. blobDateModified: '2022-02-21T15:05:29.491414-05:00'
  1417. contentSize: 61264
  1418. contentUrl:
  1419. - https://api.dandiarchive.org/api/assets/f03ed6f3-6b37-4330-b643-2466e79d2ce7/download/
  1420. - https://dandiarchive.s3.amazonaws.com/blobs/c95/24d/c9524d67-13b0-4e97-a585-3948f2bcae98
  1421. dateModified: '2025-05-09T14:39:01.036286-04:00'
  1422. digest:
  1423. dandi:dandi-etag: 0c23671c7c7662b3ba0f7efa996cae02-1
  1424. dandi:sha2-256: 4da81488eb59527efebcaac06e321e0745e9ac092bf1ae984be445fbeb23060c
  1425. encodingFormat: image/png
  1426. id: dandiasset:f03ed6f3-6b37-4330-b643-2466e79d2ce7
  1427. identifier: f03ed6f3-6b37-4330-b643-2466e79d2ce7
  1428. path: derivatives/labels/sub-rat8/micr/sub-rat8_sample-V915_SEM_seg-axonmyelin-manual.png
  1429. schemaKey: Asset
  1430. schemaVersion: 0.6.9
  1431. wasGeneratedBy:
  1432. - description: Metadata generated by DANDI cli
  1433. endDate: '2025-05-09T14:39:00.466190-04:00'
  1434. id: urn:uuid:4dc28157-85b9-4314-8d6d-2eec7b7fdb65
  1435. name: Metadata generation
  1436. schemaKey: Activity
  1437. startDate: '2025-05-09T14:39:00.466190-04:00'
  1438. wasAssociatedWith:
  1439. - identifier: RRID:SCR_019009
  1440. name: DANDI Command Line Interface
  1441. schemaKey: Software
  1442. url: https://github.com/dandi/dandi-cli
  1443. version: 0.66.7
  1444. - description: Metadata generated by DANDI cli
  1445. endDate: '2025-05-09T14:39:01.036206-04:00'
  1446. id: urn:uuid:540de60f-91fe-49e3-8c7f-9c218c02c54e
  1447. name: Metadata generation
  1448. schemaKey: Activity
  1449. startDate: '2025-05-09T14:39:01.036206-04:00'
  1450. wasAssociatedWith:
  1451. - identifier: RRID:SCR_019009
  1452. name: DANDI Command Line Interface
  1453. schemaKey: Software
  1454. url: https://github.com/dandi/dandi-cli
  1455. version: 0.66.7
  1456. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  1457. access:
  1458. - schemaKey: AccessRequirements
  1459. status: dandi:OpenAccess
  1460. blobDateModified: '2022-02-21T15:05:29.491414-05:00'
  1461. contentSize: 330
  1462. contentUrl:
  1463. - https://api.dandiarchive.org/api/assets/88ddad02-2460-44f5-aafc-5231f9b582b2/download/
  1464. - https://dandiarchive.s3.amazonaws.com/blobs/15d/467/15d4675c-5e10-42c8-ad0e-1a9ae2fe317d
  1465. dateModified: '2025-05-09T14:39:02.388269-04:00'
  1466. digest:
  1467. dandi:dandi-etag: a498c1e96aed5748ad760f687f7a9d4f-1
  1468. dandi:sha2-256: 016c5735fc7f99ed8ca8314225f35a761f6d6a457a6d0bd900ebc942f9374ec9
  1469. encodingFormat: application/json
  1470. id: dandiasset:88ddad02-2460-44f5-aafc-5231f9b582b2
  1471. identifier: 88ddad02-2460-44f5-aafc-5231f9b582b2
  1472. path: samples.json
  1473. schemaKey: Asset
  1474. schemaVersion: 0.6.9
  1475. wasAttributedTo: []
  1476. wasGeneratedBy:
  1477. - description: Metadata generated by DANDI cli
  1478. endDate: '2025-05-09T14:39:01.869549-04:00'
  1479. id: urn:uuid:6dabab77-0791-4a9d-8981-139a3f96b4a2
  1480. name: Metadata generation
  1481. schemaKey: Activity
  1482. startDate: '2025-05-09T14:39:01.869549-04:00'
  1483. wasAssociatedWith:
  1484. - identifier: RRID:SCR_019009
  1485. name: DANDI Command Line Interface
  1486. schemaKey: Software
  1487. url: https://github.com/dandi/dandi-cli
  1488. version: 0.66.7
  1489. - description: Metadata generated by DANDI cli
  1490. endDate: '2025-05-09T14:39:02.388188-04:00'
  1491. id: urn:uuid:69a2c119-4d1d-4517-8ad4-b84c6109042d
  1492. name: Metadata generation
  1493. schemaKey: Activity
  1494. startDate: '2025-05-09T14:39:02.388188-04:00'
  1495. wasAssociatedWith:
  1496. - identifier: RRID:SCR_019009
  1497. name: DANDI Command Line Interface
  1498. schemaKey: Software
  1499. url: https://github.com/dandi/dandi-cli
  1500. version: 0.66.7
  1501. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  1502. access:
  1503. - schemaKey: AccessRequirements
  1504. status: dandi:OpenAccess
  1505. blobDateModified: '2022-02-21T15:05:29.491414-05:00'
  1506. contentSize: 58430
  1507. contentUrl:
  1508. - https://api.dandiarchive.org/api/assets/667fa295-5e13-41c5-bbe0-5e7ac55473b3/download/
  1509. - https://dandiarchive.s3.amazonaws.com/blobs/7cb/431/7cb431ec-7d3f-452b-babd-11c09d92db3c
  1510. dateModified: '2025-05-09T14:39:01.532230-04:00'
  1511. digest:
  1512. dandi:dandi-etag: f5dd0bede89a628c9d05522d16c53849-1
  1513. dandi:sha2-256: e0d5e9a588f483f0c1b8792d7a5ed1f8fe190e99bb25954de9782c29e23751dc
  1514. encodingFormat: image/png
  1515. id: dandiasset:667fa295-5e13-41c5-bbe0-5e7ac55473b3
  1516. identifier: 667fa295-5e13-41c5-bbe0-5e7ac55473b3
  1517. path: derivatives/labels/sub-rat8/micr/sub-rat8_sample-V915_SEM_seg-myelin-manual.png
  1518. schemaKey: Asset
  1519. schemaVersion: 0.6.9
  1520. wasGeneratedBy:
  1521. - description: Metadata generated by DANDI cli
  1522. endDate: '2025-05-09T14:39:00.886049-04:00'
  1523. id: urn:uuid:bbe257f4-909a-4413-ac79-c1d1939e1083
  1524. name: Metadata generation
  1525. schemaKey: Activity
  1526. startDate: '2025-05-09T14:39:00.886049-04:00'
  1527. wasAssociatedWith:
  1528. - identifier: RRID:SCR_019009
  1529. name: DANDI Command Line Interface
  1530. schemaKey: Software
  1531. url: https://github.com/dandi/dandi-cli
  1532. version: 0.66.7
  1533. - description: Metadata generated by DANDI cli
  1534. endDate: '2025-05-09T14:39:01.532150-04:00'
  1535. id: urn:uuid:7a854a0d-919d-4742-8dff-4b5a26e020c2
  1536. name: Metadata generation
  1537. schemaKey: Activity
  1538. startDate: '2025-05-09T14:39:01.532150-04:00'
  1539. wasAssociatedWith:
  1540. - identifier: RRID:SCR_019009
  1541. name: DANDI Command Line Interface
  1542. schemaKey: Software
  1543. url: https://github.com/dandi/dandi-cli
  1544. version: 0.66.7
  1545. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  1546. access:
  1547. - schemaKey: AccessRequirements
  1548. status: dandi:OpenAccess
  1549. blobDateModified: '2022-02-21T15:05:29.491414-05:00'
  1550. contentSize: 239
  1551. contentUrl:
  1552. - https://api.dandiarchive.org/api/assets/b490fc09-b98b-4c49-9fdd-c03c7ae35eae/download/
  1553. - https://dandiarchive.s3.amazonaws.com/blobs/f7e/61c/f7e61c4b-3419-4e84-aa70-2430dbe09f48
  1554. dateModified: '2025-05-09T14:39:02.204746-04:00'
  1555. digest:
  1556. dandi:dandi-etag: 3a4df59a92c43d7f081d0ac663abd6cc-1
  1557. dandi:sha2-256: db40b34b368ca4655dc36443ec06f463429f731c0eb00cc10d557f058790d66f
  1558. encodingFormat: text/tab-separated-values
  1559. id: dandiasset:b490fc09-b98b-4c49-9fdd-c03c7ae35eae
  1560. identifier: b490fc09-b98b-4c49-9fdd-c03c7ae35eae
  1561. path: participants.tsv
  1562. schemaKey: Asset
  1563. schemaVersion: 0.6.9
  1564. wasAttributedTo: []
  1565. wasGeneratedBy:
  1566. - description: Metadata generated by DANDI cli
  1567. endDate: '2025-05-09T14:39:01.666354-04:00'
  1568. id: urn:uuid:52505d22-fccb-4f1f-b20c-8c4f76bcf7b5
  1569. name: Metadata generation
  1570. schemaKey: Activity
  1571. startDate: '2025-05-09T14:39:01.666354-04:00'
  1572. wasAssociatedWith:
  1573. - identifier: RRID:SCR_019009
  1574. name: DANDI Command Line Interface
  1575. schemaKey: Software
  1576. url: https://github.com/dandi/dandi-cli
  1577. version: 0.66.7
  1578. - description: Metadata generated by DANDI cli
  1579. endDate: '2025-05-09T14:39:02.204670-04:00'
  1580. id: urn:uuid:2ce29ca2-c0d1-4855-87fc-3b79c33a4bcf
  1581. name: Metadata generation
  1582. schemaKey: Activity
  1583. startDate: '2025-05-09T14:39:02.204670-04:00'
  1584. wasAssociatedWith:
  1585. - identifier: RRID:SCR_019009
  1586. name: DANDI Command Line Interface
  1587. schemaKey: Software
  1588. url: https://github.com/dandi/dandi-cli
  1589. version: 0.66.7
  1590. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  1591. access:
  1592. - schemaKey: AccessRequirements
  1593. status: dandi:OpenAccess
  1594. blobDateModified: '2022-02-21T15:05:29.491414-05:00'
  1595. contentSize: 234
  1596. contentUrl:
  1597. - https://api.dandiarchive.org/api/assets/1440d8b4-65bb-4416-bde6-885f1c464b7a/download/
  1598. - https://dandiarchive.s3.amazonaws.com/blobs/067/af9/067af976-6c85-4489-9647-6d563b1b8f22
  1599. dateModified: '2025-05-09T14:39:01.894241-04:00'
  1600. digest:
  1601. dandi:dandi-etag: ea0add2a96e77a0106555e3f9021042a-1
  1602. dandi:sha2-256: 3f65141b0b697dffe5b309294ffff018c025bcc457ff63cfc0a2df448b8a513b
  1603. encodingFormat: application/json
  1604. id: dandiasset:1440d8b4-65bb-4416-bde6-885f1c464b7a
  1605. identifier: 1440d8b4-65bb-4416-bde6-885f1c464b7a
  1606. path: participants.json
  1607. schemaKey: Asset
  1608. schemaVersion: 0.6.9
  1609. wasAttributedTo: []
  1610. wasGeneratedBy:
  1611. - description: Metadata generated by DANDI cli
  1612. endDate: '2025-05-09T14:39:01.109826-04:00'
  1613. id: urn:uuid:a7e56c7f-3bed-4d27-be38-ada5fd771230
  1614. name: Metadata generation
  1615. schemaKey: Activity
  1616. startDate: '2025-05-09T14:39:01.109826-04:00'
  1617. wasAssociatedWith:
  1618. - identifier: RRID:SCR_019009
  1619. name: DANDI Command Line Interface
  1620. schemaKey: Software
  1621. url: https://github.com/dandi/dandi-cli
  1622. version: 0.66.7
  1623. - description: Metadata generated by DANDI cli
  1624. endDate: '2025-05-09T14:39:01.894184-04:00'
  1625. id: urn:uuid:0c3528e0-a420-471f-9e37-2d8ff69a99d8
  1626. name: Metadata generation
  1627. schemaKey: Activity
  1628. startDate: '2025-05-09T14:39:01.894184-04:00'
  1629. wasAssociatedWith:
  1630. - identifier: RRID:SCR_019009
  1631. name: DANDI Command Line Interface
  1632. schemaKey: Software
  1633. url: https://github.com/dandi/dandi-cli
  1634. version: 0.66.7
  1635. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  1636. access:
  1637. - schemaKey: AccessRequirements
  1638. status: dandi:OpenAccess
  1639. blobDateModified: '2022-02-21T15:05:29.491414-05:00'
  1640. contentSize: 337
  1641. contentUrl:
  1642. - https://api.dandiarchive.org/api/assets/ba11101a-6885-4f13-ac38-9beeb3085077/download/
  1643. - https://dandiarchive.s3.amazonaws.com/blobs/8db/bff/8dbbff50-b6d7-48dc-8e4c-ec5e7f5f65b2
  1644. dateModified: '2025-05-09T14:39:03.302766-04:00'
  1645. digest:
  1646. dandi:dandi-etag: e1a5c9c6c29e022e70049fa547ef13c6-1
  1647. dandi:sha2-256: 070f38a93422d6899c1d029beb2ed005324e0f516a5c02a4af3eca415540cf51
  1648. encodingFormat: text/tab-separated-values
  1649. id: dandiasset:ba11101a-6885-4f13-ac38-9beeb3085077
  1650. identifier: ba11101a-6885-4f13-ac38-9beeb3085077
  1651. path: samples.tsv
  1652. schemaKey: Asset
  1653. schemaVersion: 0.6.9
  1654. wasAttributedTo: []
  1655. wasGeneratedBy:
  1656. - description: Metadata generated by DANDI cli
  1657. endDate: '2025-05-09T14:39:02.751071-04:00'
  1658. id: urn:uuid:f2a0230f-7221-43fe-b936-6b118d1ddbfb
  1659. name: Metadata generation
  1660. schemaKey: Activity
  1661. startDate: '2025-05-09T14:39:02.751071-04:00'
  1662. wasAssociatedWith:
  1663. - identifier: RRID:SCR_019009
  1664. name: DANDI Command Line Interface
  1665. schemaKey: Software
  1666. url: https://github.com/dandi/dandi-cli
  1667. version: 0.66.7
  1668. - description: Metadata generated by DANDI cli
  1669. endDate: '2025-05-09T14:39:03.302709-04:00'
  1670. id: urn:uuid:f4d56103-dddf-47e3-8786-dfc05f95226f
  1671. name: Metadata generation
  1672. schemaKey: Activity
  1673. startDate: '2025-05-09T14:39:03.302709-04:00'
  1674. wasAssociatedWith:
  1675. - identifier: RRID:SCR_019009
  1676. name: DANDI Command Line Interface
  1677. schemaKey: Software
  1678. url: https://github.com/dandi/dandi-cli
  1679. version: 0.66.7
  1680. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  1681. access:
  1682. - schemaKey: AccessRequirements
  1683. status: dandi:OpenAccess
  1684. blobDateModified: '2022-02-21T15:05:29.492414-05:00'
  1685. contentSize: 188
  1686. contentUrl:
  1687. - https://api.dandiarchive.org/api/assets/6ecd4c47-3b30-4c14-9fd8-5526fef0007d/download/
  1688. - https://dandiarchive.s3.amazonaws.com/blobs/e7a/01a/e7a01a79-b9f2-4da4-a271-949a89640294
  1689. dateModified: '2025-05-09T14:39:03.697511-04:00'
  1690. digest:
  1691. dandi:dandi-etag: fe435a4d3270dede943c5919bd827fe0-1
  1692. dandi:sha2-256: 00ead0ef524ddf06ace91af6505571388bcb2b454a31a6016a0d10a9ff474bab
  1693. encodingFormat: application/json
  1694. id: dandiasset:6ecd4c47-3b30-4c14-9fd8-5526fef0007d
  1695. identifier: 6ecd4c47-3b30-4c14-9fd8-5526fef0007d
  1696. path: sub-rat1/micr/sub-rat1_sample-data1_SEM.json
  1697. schemaKey: Asset
  1698. schemaVersion: 0.6.9
  1699. wasAttributedTo:
  1700. - identifier: rat1
  1701. schemaKey: Participant
  1702. wasGeneratedBy:
  1703. - description: Metadata generated by DANDI cli
  1704. endDate: '2025-05-09T14:39:03.148345-04:00'
  1705. id: urn:uuid:dae48270-c381-4e8b-bbce-e7c90b3b9ec5
  1706. name: Metadata generation
  1707. schemaKey: Activity
  1708. startDate: '2025-05-09T14:39:03.148345-04:00'
  1709. wasAssociatedWith:
  1710. - identifier: RRID:SCR_019009
  1711. name: DANDI Command Line Interface
  1712. schemaKey: Software
  1713. url: https://github.com/dandi/dandi-cli
  1714. version: 0.66.7
  1715. - description: Metadata generated by DANDI cli
  1716. endDate: '2025-05-09T14:39:03.697454-04:00'
  1717. id: urn:uuid:012c18fd-4eeb-4593-9ad2-2d44d7f770ab
  1718. name: Metadata generation
  1719. schemaKey: Activity
  1720. startDate: '2025-05-09T14:39:03.697454-04:00'
  1721. wasAssociatedWith:
  1722. - identifier: RRID:SCR_019009
  1723. name: DANDI Command Line Interface
  1724. schemaKey: Software
  1725. url: https://github.com/dandi/dandi-cli
  1726. version: 0.66.7
  1727. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  1728. access:
  1729. - schemaKey: AccessRequirements
  1730. status: dandi:OpenAccess
  1731. blobDateModified: '2022-02-21T15:05:29.496414-05:00'
  1732. contentSize: 190
  1733. contentUrl:
  1734. - https://api.dandiarchive.org/api/assets/0c48abf0-eea2-488a-8233-85ce9933d1f6/download/
  1735. - https://dandiarchive.s3.amazonaws.com/blobs/819/a14/819a145f-1c78-4788-bc5e-853b0a89c5d4
  1736. dateModified: '2025-05-09T14:39:04.531580-04:00'
  1737. digest:
  1738. dandi:dandi-etag: 530d10e09cf4cb8359b6b7f900d73875-1
  1739. dandi:sha2-256: 88fa83952631153214e16a90c13e9aafae571a1624c61011781bf4dcb9a8ebeb
  1740. encodingFormat: application/json
  1741. id: dandiasset:0c48abf0-eea2-488a-8233-85ce9933d1f6
  1742. identifier: 0c48abf0-eea2-488a-8233-85ce9933d1f6
  1743. path: sub-rat2/micr/sub-rat2_sample-data5_SEM.json
  1744. schemaKey: Asset
  1745. schemaVersion: 0.6.9
  1746. wasAttributedTo:
  1747. - identifier: rat2
  1748. schemaKey: Participant
  1749. wasGeneratedBy:
  1750. - description: Metadata generated by DANDI cli
  1751. endDate: '2025-05-09T14:39:03.958175-04:00'
  1752. id: urn:uuid:e008a7cf-d800-4d0f-8e9c-10825cccd145
  1753. name: Metadata generation
  1754. schemaKey: Activity
  1755. startDate: '2025-05-09T14:39:03.958175-04:00'
  1756. wasAssociatedWith:
  1757. - identifier: RRID:SCR_019009
  1758. name: DANDI Command Line Interface
  1759. schemaKey: Software
  1760. url: https://github.com/dandi/dandi-cli
  1761. version: 0.66.7
  1762. - description: Metadata generated by DANDI cli
  1763. endDate: '2025-05-09T14:39:04.531487-04:00'
  1764. id: urn:uuid:2f7b865e-9140-4323-9fb7-b013fcd9a2c9
  1765. name: Metadata generation
  1766. schemaKey: Activity
  1767. startDate: '2025-05-09T14:39:04.531487-04:00'
  1768. wasAssociatedWith:
  1769. - identifier: RRID:SCR_019009
  1770. name: DANDI Command Line Interface
  1771. schemaKey: Software
  1772. url: https://github.com/dandi/dandi-cli
  1773. version: 0.66.7
  1774. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  1775. access:
  1776. - schemaKey: AccessRequirements
  1777. status: dandi:OpenAccess
  1778. blobDateModified: '2022-02-21T15:05:29.496414-05:00'
  1779. contentSize: 1004958
  1780. contentUrl:
  1781. - https://api.dandiarchive.org/api/assets/58df35cc-7f81-49d6-8f2a-db830e748520/download/
  1782. - https://dandiarchive.s3.amazonaws.com/blobs/6f7/7cd/6f77cdcb-e81b-4113-87cb-9f231da64ddb
  1783. dateModified: '2025-05-09T14:39:04.265157-04:00'
  1784. digest:
  1785. dandi:dandi-etag: 3f1eda21d546981772e2368aec8b129e-1
  1786. dandi:sha2-256: c93a2cfc720984f8d32827d765bfbee9e5d0b23240774a93373a2c05c8abe342
  1787. encodingFormat: image/png
  1788. id: dandiasset:58df35cc-7f81-49d6-8f2a-db830e748520
  1789. identifier: 58df35cc-7f81-49d6-8f2a-db830e748520
  1790. path: sub-rat1/micr/sub-rat1_sample-data1_SEM.png
  1791. schemaKey: Asset
  1792. schemaVersion: 0.6.9
  1793. wasAttributedTo:
  1794. - identifier: rat1
  1795. schemaKey: Participant
  1796. wasGeneratedBy:
  1797. - description: Metadata generated by DANDI cli
  1798. endDate: '2025-05-09T14:39:03.551589-04:00'
  1799. id: urn:uuid:b70af62f-2da3-4cd6-b8e3-46cb9ac3b707
  1800. name: Metadata generation
  1801. schemaKey: Activity
  1802. startDate: '2025-05-09T14:39:03.551589-04:00'
  1803. wasAssociatedWith:
  1804. - identifier: RRID:SCR_019009
  1805. name: DANDI Command Line Interface
  1806. schemaKey: Software
  1807. url: https://github.com/dandi/dandi-cli
  1808. version: 0.66.7
  1809. - description: Metadata generated by DANDI cli
  1810. endDate: '2025-05-09T14:39:04.265095-04:00'
  1811. id: urn:uuid:8eb121f0-8505-4b30-a4f9-938897e5a15e
  1812. name: Metadata generation
  1813. schemaKey: Activity
  1814. startDate: '2025-05-09T14:39:04.265095-04:00'
  1815. wasAssociatedWith:
  1816. - identifier: RRID:SCR_019009
  1817. name: DANDI Command Line Interface
  1818. schemaKey: Software
  1819. url: https://github.com/dandi/dandi-cli
  1820. version: 0.66.7
  1821. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  1822. access:
  1823. - schemaKey: AccessRequirements
  1824. status: dandi:OpenAccess
  1825. blobDateModified: '2022-02-21T15:05:29.500414-05:00'
  1826. contentSize: 926903
  1827. contentUrl:
  1828. - https://api.dandiarchive.org/api/assets/48fe2f23-d088-4350-8ba1-5d8f75cc51bc/download/
  1829. - https://dandiarchive.s3.amazonaws.com/blobs/054/0fb/0540fb35-0142-4120-9b81-347439c837dc
  1830. dateModified: '2025-05-09T14:39:04.668524-04:00'
  1831. digest:
  1832. dandi:dandi-etag: 5b6b03948809b3fca20f8fb2325d2a25-1
  1833. dandi:sha2-256: e878e6d412e0a674a67f57f983a97eac70edc41e04ab222ef4338d2653377a95
  1834. encodingFormat: image/png
  1835. id: dandiasset:48fe2f23-d088-4350-8ba1-5d8f75cc51bc
  1836. identifier: 48fe2f23-d088-4350-8ba1-5d8f75cc51bc
  1837. path: sub-rat2/micr/sub-rat2_sample-data5_SEM.png
  1838. schemaKey: Asset
  1839. schemaVersion: 0.6.9
  1840. wasAttributedTo:
  1841. - identifier: rat2
  1842. schemaKey: Participant
  1843. wasGeneratedBy:
  1844. - description: Metadata generated by DANDI cli
  1845. endDate: '2025-05-09T14:39:04.110248-04:00'
  1846. id: urn:uuid:beb6bc18-7685-4394-8da3-b06a23fca0b2
  1847. name: Metadata generation
  1848. schemaKey: Activity
  1849. startDate: '2025-05-09T14:39:04.110248-04:00'
  1850. wasAssociatedWith:
  1851. - identifier: RRID:SCR_019009
  1852. name: DANDI Command Line Interface
  1853. schemaKey: Software
  1854. url: https://github.com/dandi/dandi-cli
  1855. version: 0.66.7
  1856. - description: Metadata generated by DANDI cli
  1857. endDate: '2025-05-09T14:39:04.668468-04:00'
  1858. id: urn:uuid:55e7d5d5-1df6-4314-95f2-7abfbcaa3710
  1859. name: Metadata generation
  1860. schemaKey: Activity
  1861. startDate: '2025-05-09T14:39:04.668468-04:00'
  1862. wasAssociatedWith:
  1863. - identifier: RRID:SCR_019009
  1864. name: DANDI Command Line Interface
  1865. schemaKey: Software
  1866. url: https://github.com/dandi/dandi-cli
  1867. version: 0.66.7
  1868. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  1869. access:
  1870. - schemaKey: AccessRequirements
  1871. status: dandi:OpenAccess
  1872. blobDateModified: '2022-02-21T15:05:29.500414-05:00'
  1873. contentSize: 186
  1874. contentUrl:
  1875. - https://api.dandiarchive.org/api/assets/97f04666-d6ea-4e41-976b-c62c43fddf04/download/
  1876. - https://dandiarchive.s3.amazonaws.com/blobs/016/cb0/016cb0d7-3991-417d-a089-76f2a5446670
  1877. dateModified: '2025-05-09T14:39:05.316114-04:00'
  1878. digest:
  1879. dandi:dandi-etag: 4a3bc308793f37d0b83d6a386a945d8c-1
  1880. dandi:sha2-256: 93e427a28c6eccf9f83ba67e4858d2a9a19318238ead62f714fb4a05fb440b9f
  1881. encodingFormat: application/json
  1882. id: dandiasset:97f04666-d6ea-4e41-976b-c62c43fddf04
  1883. identifier: 97f04666-d6ea-4e41-976b-c62c43fddf04
  1884. path: sub-rat3/micr/sub-rat3_SEM.json
  1885. schemaKey: Asset
  1886. schemaVersion: 0.6.9
  1887. wasAttributedTo:
  1888. - identifier: rat3
  1889. schemaKey: Participant
  1890. wasGeneratedBy:
  1891. - description: Metadata generated by DANDI cli
  1892. endDate: '2025-05-09T14:39:05.102982-04:00'
  1893. id: urn:uuid:421c4442-4d4c-4d0f-938e-d726b475310a
  1894. name: Metadata generation
  1895. schemaKey: Activity
  1896. startDate: '2025-05-09T14:39:05.102982-04:00'
  1897. wasAssociatedWith:
  1898. - identifier: RRID:SCR_019009
  1899. name: DANDI Command Line Interface
  1900. schemaKey: Software
  1901. url: https://github.com/dandi/dandi-cli
  1902. version: 0.66.7
  1903. - description: Metadata generated by DANDI cli
  1904. endDate: '2025-05-09T14:39:05.316055-04:00'
  1905. id: urn:uuid:984f7382-5f1c-4baa-9353-0dab8a727aa6
  1906. name: Metadata generation
  1907. schemaKey: Activity
  1908. startDate: '2025-05-09T14:39:05.316055-04:00'
  1909. wasAssociatedWith:
  1910. - identifier: RRID:SCR_019009
  1911. name: DANDI Command Line Interface
  1912. schemaKey: Software
  1913. url: https://github.com/dandi/dandi-cli
  1914. version: 0.66.7
  1915. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  1916. access:
  1917. - schemaKey: AccessRequirements
  1918. status: dandi:OpenAccess
  1919. blobDateModified: '2022-02-21T15:05:29.502414-05:00'
  1920. contentSize: 407415
  1921. contentUrl:
  1922. - https://api.dandiarchive.org/api/assets/ff17b5c5-525a-4cfa-b5ba-ae5c5ef8f787/download/
  1923. - https://dandiarchive.s3.amazonaws.com/blobs/f39/c92/f39c9227-e94a-46f0-b95a-4cf46224e4d5
  1924. dateModified: '2025-05-09T14:39:05.885665-04:00'
  1925. digest:
  1926. dandi:dandi-etag: cb8b1676c47967e047cc34e41db4413d-1
  1927. dandi:sha2-256: d402873851fa675b0bbaeff8ab752e92e0b8159834f416c4428f78a15883f5ce
  1928. encodingFormat: image/png
  1929. id: dandiasset:ff17b5c5-525a-4cfa-b5ba-ae5c5ef8f787
  1930. identifier: ff17b5c5-525a-4cfa-b5ba-ae5c5ef8f787
  1931. path: sub-rat3/micr/sub-rat3_sample-data10_SEM.png
  1932. schemaKey: Asset
  1933. schemaVersion: 0.6.9
  1934. wasAttributedTo:
  1935. - identifier: rat3
  1936. schemaKey: Participant
  1937. wasGeneratedBy:
  1938. - description: Metadata generated by DANDI cli
  1939. endDate: '2025-05-09T14:39:05.541100-04:00'
  1940. id: urn:uuid:83f93a90-b243-4558-a21c-8d690a975b16
  1941. name: Metadata generation
  1942. schemaKey: Activity
  1943. startDate: '2025-05-09T14:39:05.541100-04:00'
  1944. wasAssociatedWith:
  1945. - identifier: RRID:SCR_019009
  1946. name: DANDI Command Line Interface
  1947. schemaKey: Software
  1948. url: https://github.com/dandi/dandi-cli
  1949. version: 0.66.7
  1950. - description: Metadata generated by DANDI cli
  1951. endDate: '2025-05-09T14:39:05.885584-04:00'
  1952. id: urn:uuid:2934ede4-0a6d-4731-a00f-4915391e9696
  1953. name: Metadata generation
  1954. schemaKey: Activity
  1955. startDate: '2025-05-09T14:39:05.885584-04:00'
  1956. wasAssociatedWith:
  1957. - identifier: RRID:SCR_019009
  1958. name: DANDI Command Line Interface
  1959. schemaKey: Software
  1960. url: https://github.com/dandi/dandi-cli
  1961. version: 0.66.7
  1962. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  1963. access:
  1964. - schemaKey: AccessRequirements
  1965. status: dandi:OpenAccess
  1966. blobDateModified: '2022-02-21T15:05:29.505414-05:00'
  1967. contentSize: 186
  1968. contentUrl:
  1969. - https://api.dandiarchive.org/api/assets/f5840023-73aa-48c5-b2b8-9d0f8e0956d8/download/
  1970. - https://dandiarchive.s3.amazonaws.com/blobs/016/cb0/016cb0d7-3991-417d-a089-76f2a5446670
  1971. dateModified: '2025-05-09T14:39:07.271210-04:00'
  1972. digest:
  1973. dandi:dandi-etag: 4a3bc308793f37d0b83d6a386a945d8c-1
  1974. dandi:sha2-256: 93e427a28c6eccf9f83ba67e4858d2a9a19318238ead62f714fb4a05fb440b9f
  1975. encodingFormat: application/json
  1976. id: dandiasset:f5840023-73aa-48c5-b2b8-9d0f8e0956d8
  1977. identifier: f5840023-73aa-48c5-b2b8-9d0f8e0956d8
  1978. path: sub-rat4/micr/sub-rat4_sample-data12_SEM.json
  1979. schemaKey: Asset
  1980. schemaVersion: 0.6.9
  1981. wasAttributedTo:
  1982. - identifier: rat4
  1983. schemaKey: Participant
  1984. wasGeneratedBy:
  1985. - description: Metadata generated by DANDI cli
  1986. endDate: '2025-05-09T14:39:06.668399-04:00'
  1987. id: urn:uuid:b7b2b719-2987-4c6e-9d9a-95d58475fdb4
  1988. name: Metadata generation
  1989. schemaKey: Activity
  1990. startDate: '2025-05-09T14:39:06.668399-04:00'
  1991. wasAssociatedWith:
  1992. - identifier: RRID:SCR_019009
  1993. name: DANDI Command Line Interface
  1994. schemaKey: Software
  1995. url: https://github.com/dandi/dandi-cli
  1996. version: 0.66.7
  1997. - description: Metadata generated by DANDI cli
  1998. endDate: '2025-05-09T14:39:07.271138-04:00'
  1999. id: urn:uuid:b8c5cd14-a153-4c9b-9725-1f8afe36bcc6
  2000. name: Metadata generation
  2001. schemaKey: Activity
  2002. startDate: '2025-05-09T14:39:07.271138-04:00'
  2003. wasAssociatedWith:
  2004. - identifier: RRID:SCR_019009
  2005. name: DANDI Command Line Interface
  2006. schemaKey: Software
  2007. url: https://github.com/dandi/dandi-cli
  2008. version: 0.66.7
  2009. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  2010. access:
  2011. - schemaKey: AccessRequirements
  2012. status: dandi:OpenAccess
  2013. blobDateModified: '2022-02-21T15:05:29.503414-05:00'
  2014. contentSize: 418019
  2015. contentUrl:
  2016. - https://api.dandiarchive.org/api/assets/2f850919-e375-4c30-a146-03cf9f6f7a76/download/
  2017. - https://dandiarchive.s3.amazonaws.com/blobs/1ef/af4/1efaf4dc-80f3-49be-aaf6-3c289f320a8b
  2018. dateModified: '2025-05-09T14:39:06.776256-04:00'
  2019. digest:
  2020. dandi:dandi-etag: d87f84d39cfef747a5c60cce564a7421-1
  2021. dandi:sha2-256: a3fac42bb940fe20371167bc64bae94e47f8551dd699357122c161b39d9fa9e1
  2022. encodingFormat: image/png
  2023. id: dandiasset:2f850919-e375-4c30-a146-03cf9f6f7a76
  2024. identifier: 2f850919-e375-4c30-a146-03cf9f6f7a76
  2025. path: sub-rat3/micr/sub-rat3_sample-data11_SEM.png
  2026. schemaKey: Asset
  2027. schemaVersion: 0.6.9
  2028. wasAttributedTo:
  2029. - identifier: rat3
  2030. schemaKey: Participant
  2031. wasGeneratedBy:
  2032. - description: Metadata generated by DANDI cli
  2033. endDate: '2025-05-09T14:39:06.045365-04:00'
  2034. id: urn:uuid:bd94a2e1-40e7-4856-8338-62eba67d8afb
  2035. name: Metadata generation
  2036. schemaKey: Activity
  2037. startDate: '2025-05-09T14:39:06.045365-04:00'
  2038. wasAssociatedWith:
  2039. - identifier: RRID:SCR_019009
  2040. name: DANDI Command Line Interface
  2041. schemaKey: Software
  2042. url: https://github.com/dandi/dandi-cli
  2043. version: 0.66.7
  2044. - description: Metadata generated by DANDI cli
  2045. endDate: '2025-05-09T14:39:06.776198-04:00'
  2046. id: urn:uuid:f02b5b25-b036-45b0-a055-a9a57108c854
  2047. name: Metadata generation
  2048. schemaKey: Activity
  2049. startDate: '2025-05-09T14:39:06.776198-04:00'
  2050. wasAssociatedWith:
  2051. - identifier: RRID:SCR_019009
  2052. name: DANDI Command Line Interface
  2053. schemaKey: Software
  2054. url: https://github.com/dandi/dandi-cli
  2055. version: 0.66.7
  2056. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  2057. access:
  2058. - schemaKey: AccessRequirements
  2059. status: dandi:OpenAccess
  2060. blobDateModified: '2022-02-21T15:05:29.505414-05:00'
  2061. contentSize: 391749
  2062. contentUrl:
  2063. - https://api.dandiarchive.org/api/assets/91fbd4e2-fc6f-4087-aee0-d00118c524ef/download/
  2064. - https://dandiarchive.s3.amazonaws.com/blobs/31b/abd/31babdd9-871e-43b3-8e2b-9546c9f90f87
  2065. dateModified: '2025-05-09T14:39:07.176511-04:00'
  2066. digest:
  2067. dandi:dandi-etag: d4226480c385980f87b76d816bbf8518-1
  2068. dandi:sha2-256: 067af38d7f98cb7eef988d38c8821af7dc33c73146e79eeff66dc9349a336c47
  2069. encodingFormat: image/png
  2070. id: dandiasset:91fbd4e2-fc6f-4087-aee0-d00118c524ef
  2071. identifier: 91fbd4e2-fc6f-4087-aee0-d00118c524ef
  2072. path: sub-rat3/micr/sub-rat3_sample-data9_SEM.png
  2073. schemaKey: Asset
  2074. schemaVersion: 0.6.9
  2075. wasAttributedTo:
  2076. - identifier: rat3
  2077. schemaKey: Participant
  2078. wasGeneratedBy:
  2079. - description: Metadata generated by DANDI cli
  2080. endDate: '2025-05-09T14:39:06.519360-04:00'
  2081. id: urn:uuid:d2604cd1-1e02-4669-bf00-84f22f56cb39
  2082. name: Metadata generation
  2083. schemaKey: Activity
  2084. startDate: '2025-05-09T14:39:06.519360-04:00'
  2085. wasAssociatedWith:
  2086. - identifier: RRID:SCR_019009
  2087. name: DANDI Command Line Interface
  2088. schemaKey: Software
  2089. url: https://github.com/dandi/dandi-cli
  2090. version: 0.66.7
  2091. - description: Metadata generated by DANDI cli
  2092. endDate: '2025-05-09T14:39:07.176430-04:00'
  2093. id: urn:uuid:0bcc8fe2-966c-48d9-9953-9681f7e7db2d
  2094. name: Metadata generation
  2095. schemaKey: Activity
  2096. startDate: '2025-05-09T14:39:07.176430-04:00'
  2097. wasAssociatedWith:
  2098. - identifier: RRID:SCR_019009
  2099. name: DANDI Command Line Interface
  2100. schemaKey: Software
  2101. url: https://github.com/dandi/dandi-cli
  2102. version: 0.66.7
  2103. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  2104. access:
  2105. - schemaKey: AccessRequirements
  2106. status: dandi:OpenAccess
  2107. blobDateModified: '2022-02-21T15:05:29.507414-05:00'
  2108. contentSize: 480267
  2109. contentUrl:
  2110. - https://api.dandiarchive.org/api/assets/91fc5f02-d3b8-4ab6-90f3-f72204079096/download/
  2111. - https://dandiarchive.s3.amazonaws.com/blobs/6c6/a28/6c6a2881-8d47-4d14-86f9-4d5199a976e1
  2112. dateModified: '2025-05-09T14:39:07.693489-04:00'
  2113. digest:
  2114. dandi:dandi-etag: 6dee764910a298af3c4cf3bc5462d498-1
  2115. dandi:sha2-256: d121f05fe9f03458b4dd9a9e4f0fdeba64e5cbd97ec4584415931144e012b764
  2116. encodingFormat: image/png
  2117. id: dandiasset:91fc5f02-d3b8-4ab6-90f3-f72204079096
  2118. identifier: 91fc5f02-d3b8-4ab6-90f3-f72204079096
  2119. path: sub-rat4/micr/sub-rat4_sample-data12_SEM.png
  2120. schemaKey: Asset
  2121. schemaVersion: 0.6.9
  2122. wasAttributedTo:
  2123. - identifier: rat4
  2124. schemaKey: Participant
  2125. wasGeneratedBy:
  2126. - description: Metadata generated by DANDI cli
  2127. endDate: '2025-05-09T14:39:07.212048-04:00'
  2128. id: urn:uuid:6c1d105f-f685-47dc-90b4-e074c870e44b
  2129. name: Metadata generation
  2130. schemaKey: Activity
  2131. startDate: '2025-05-09T14:39:07.212048-04:00'
  2132. wasAssociatedWith:
  2133. - identifier: RRID:SCR_019009
  2134. name: DANDI Command Line Interface
  2135. schemaKey: Software
  2136. url: https://github.com/dandi/dandi-cli
  2137. version: 0.66.7
  2138. - description: Metadata generated by DANDI cli
  2139. endDate: '2025-05-09T14:39:07.693413-04:00'
  2140. id: urn:uuid:1ae2ce15-b41e-4756-8d3a-d27f9e473cde
  2141. name: Metadata generation
  2142. schemaKey: Activity
  2143. startDate: '2025-05-09T14:39:07.693413-04:00'
  2144. wasAssociatedWith:
  2145. - identifier: RRID:SCR_019009
  2146. name: DANDI Command Line Interface
  2147. schemaKey: Software
  2148. url: https://github.com/dandi/dandi-cli
  2149. version: 0.66.7
  2150. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  2151. access:
  2152. - schemaKey: AccessRequirements
  2153. status: dandi:OpenAccess
  2154. blobDateModified: '2022-02-21T15:05:29.507414-05:00'
  2155. contentSize: 188
  2156. contentUrl:
  2157. - https://api.dandiarchive.org/api/assets/5bf07985-ff90-4eaa-af04-3dd6c19afc13/download/
  2158. - https://dandiarchive.s3.amazonaws.com/blobs/944/052/9440526c-2330-43fc-8617-e91c3e681c12
  2159. dateModified: '2025-05-09T14:39:08.438983-04:00'
  2160. digest:
  2161. dandi:dandi-etag: cbe4c08ed98050906c48dcfda5bdeb21-1
  2162. dandi:sha2-256: 52774fdd6f346b4ab6c1627eab9e1c7555dfa37bc585317034d870e66b893710
  2163. encodingFormat: application/json
  2164. id: dandiasset:5bf07985-ff90-4eaa-af04-3dd6c19afc13
  2165. identifier: 5bf07985-ff90-4eaa-af04-3dd6c19afc13
  2166. path: sub-rat5/micr/sub-rat5_sample-data14_SEM.json
  2167. schemaKey: Asset
  2168. schemaVersion: 0.6.9
  2169. wasAttributedTo:
  2170. - identifier: rat5
  2171. schemaKey: Participant
  2172. wasGeneratedBy:
  2173. - description: Metadata generated by DANDI cli
  2174. endDate: '2025-05-09T14:39:07.995584-04:00'
  2175. id: urn:uuid:2e5cc29c-5e72-4111-a6cf-17a49923a235
  2176. name: Metadata generation
  2177. schemaKey: Activity
  2178. startDate: '2025-05-09T14:39:07.995584-04:00'
  2179. wasAssociatedWith:
  2180. - identifier: RRID:SCR_019009
  2181. name: DANDI Command Line Interface
  2182. schemaKey: Software
  2183. url: https://github.com/dandi/dandi-cli
  2184. version: 0.66.7
  2185. - description: Metadata generated by DANDI cli
  2186. endDate: '2025-05-09T14:39:08.438874-04:00'
  2187. id: urn:uuid:78e6a807-c2e7-4cf3-8894-54f290d79675
  2188. name: Metadata generation
  2189. schemaKey: Activity
  2190. startDate: '2025-05-09T14:39:08.438874-04:00'
  2191. wasAssociatedWith:
  2192. - identifier: RRID:SCR_019009
  2193. name: DANDI Command Line Interface
  2194. schemaKey: Software
  2195. url: https://github.com/dandi/dandi-cli
  2196. version: 0.66.7
  2197. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  2198. access:
  2199. - schemaKey: AccessRequirements
  2200. status: dandi:OpenAccess
  2201. blobDateModified: '2022-02-21T15:05:29.518414-05:00'
  2202. contentSize: 188
  2203. contentUrl:
  2204. - https://api.dandiarchive.org/api/assets/9a3eddc1-716d-48d2-a88b-929930c95641/download/
  2205. - https://dandiarchive.s3.amazonaws.com/blobs/944/052/9440526c-2330-43fc-8617-e91c3e681c12
  2206. dateModified: '2025-05-09T14:39:09.349105-04:00'
  2207. digest:
  2208. dandi:dandi-etag: cbe4c08ed98050906c48dcfda5bdeb21-1
  2209. dandi:sha2-256: 52774fdd6f346b4ab6c1627eab9e1c7555dfa37bc585317034d870e66b893710
  2210. encodingFormat: application/json
  2211. id: dandiasset:9a3eddc1-716d-48d2-a88b-929930c95641
  2212. identifier: 9a3eddc1-716d-48d2-a88b-929930c95641
  2213. path: sub-rat6/micr/sub-rat6_sample-data15_SEM.json
  2214. schemaKey: Asset
  2215. schemaVersion: 0.6.9
  2216. wasAttributedTo:
  2217. - identifier: rat6
  2218. schemaKey: Participant
  2219. wasGeneratedBy:
  2220. - description: Metadata generated by DANDI cli
  2221. endDate: '2025-05-09T14:39:08.856073-04:00'
  2222. id: urn:uuid:eb25d73e-da04-4bee-a697-cf01de1dd32a
  2223. name: Metadata generation
  2224. schemaKey: Activity
  2225. startDate: '2025-05-09T14:39:08.856073-04:00'
  2226. wasAssociatedWith:
  2227. - identifier: RRID:SCR_019009
  2228. name: DANDI Command Line Interface
  2229. schemaKey: Software
  2230. url: https://github.com/dandi/dandi-cli
  2231. version: 0.66.7
  2232. - description: Metadata generated by DANDI cli
  2233. endDate: '2025-05-09T14:39:09.349031-04:00'
  2234. id: urn:uuid:24b19679-9116-4465-8911-53326a8bdf20
  2235. name: Metadata generation
  2236. schemaKey: Activity
  2237. startDate: '2025-05-09T14:39:09.349031-04:00'
  2238. wasAssociatedWith:
  2239. - identifier: RRID:SCR_019009
  2240. name: DANDI Command Line Interface
  2241. schemaKey: Software
  2242. url: https://github.com/dandi/dandi-cli
  2243. version: 0.66.7
  2244. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  2245. access:
  2246. - schemaKey: AccessRequirements
  2247. status: dandi:OpenAccess
  2248. blobDateModified: '2022-02-21T15:05:29.517414-05:00'
  2249. contentSize: 2434671
  2250. contentUrl:
  2251. - https://api.dandiarchive.org/api/assets/b5e62ef9-9b06-425c-8027-b8b9dc48e28d/download/
  2252. - https://dandiarchive.s3.amazonaws.com/blobs/a49/5c9/a495c9b3-d2a8-49b6-b959-7678b54e4341
  2253. dateModified: '2025-05-09T14:39:08.591449-04:00'
  2254. digest:
  2255. dandi:dandi-etag: 60739bd7e9f67273dd6ac36c64ca72b4-1
  2256. dandi:sha2-256: 40641767abf2dc5a6940c9e42e17e2e0ca7a4bfddca50016302c99a0515ba8ca
  2257. encodingFormat: image/png
  2258. id: dandiasset:b5e62ef9-9b06-425c-8027-b8b9dc48e28d
  2259. identifier: b5e62ef9-9b06-425c-8027-b8b9dc48e28d
  2260. path: sub-rat5/micr/sub-rat5_sample-data14_SEM.png
  2261. schemaKey: Asset
  2262. schemaVersion: 0.6.9
  2263. wasAttributedTo:
  2264. - identifier: rat5
  2265. schemaKey: Participant
  2266. wasGeneratedBy:
  2267. - description: Metadata generated by DANDI cli
  2268. endDate: '2025-05-09T14:39:08.029990-04:00'
  2269. id: urn:uuid:7e2a7cb4-2132-41b2-9cee-8e04bec0001e
  2270. name: Metadata generation
  2271. schemaKey: Activity
  2272. startDate: '2025-05-09T14:39:08.029990-04:00'
  2273. wasAssociatedWith:
  2274. - identifier: RRID:SCR_019009
  2275. name: DANDI Command Line Interface
  2276. schemaKey: Software
  2277. url: https://github.com/dandi/dandi-cli
  2278. version: 0.66.7
  2279. - description: Metadata generated by DANDI cli
  2280. endDate: '2025-05-09T14:39:08.591383-04:00'
  2281. id: urn:uuid:5912bf47-77df-4fd7-ba8a-e53fe20aeca5
  2282. name: Metadata generation
  2283. schemaKey: Activity
  2284. startDate: '2025-05-09T14:39:08.591383-04:00'
  2285. wasAssociatedWith:
  2286. - identifier: RRID:SCR_019009
  2287. name: DANDI Command Line Interface
  2288. schemaKey: Software
  2289. url: https://github.com/dandi/dandi-cli
  2290. version: 0.66.7
  2291. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  2292. access:
  2293. - schemaKey: AccessRequirements
  2294. status: dandi:OpenAccess
  2295. blobDateModified: '2022-02-21T15:05:29.521415-05:00'
  2296. contentSize: 98
  2297. contentUrl:
  2298. - https://api.dandiarchive.org/api/assets/41d9adb1-de8b-47c6-8e49-ef1c336bddde/download/
  2299. - https://dandiarchive.s3.amazonaws.com/blobs/319/f43/319f4330-f1e9-4bac-8299-c33d711fc0e4
  2300. dateModified: '2025-05-09T14:39:09.955325-04:00'
  2301. digest:
  2302. dandi:dandi-etag: 22a06322b7495b86fbd9deba6f3b19e1-1
  2303. dandi:sha2-256: 6a9f99cad655d572be10e118e99153f383db9fbd0756efb0dff81134084c7a2f
  2304. encodingFormat: application/json
  2305. id: dandiasset:41d9adb1-de8b-47c6-8e49-ef1c336bddde
  2306. identifier: 41d9adb1-de8b-47c6-8e49-ef1c336bddde
  2307. path: sub-rat7/micr/sub-rat7_sample-Maxo03img60_SEM.json
  2308. schemaKey: Asset
  2309. schemaVersion: 0.6.9
  2310. wasAttributedTo:
  2311. - identifier: rat7
  2312. schemaKey: Participant
  2313. wasGeneratedBy:
  2314. - description: Metadata generated by DANDI cli
  2315. endDate: '2025-05-09T14:39:09.550922-04:00'
  2316. id: urn:uuid:2e696b14-fa58-49aa-b1a5-f341778669ac
  2317. name: Metadata generation
  2318. schemaKey: Activity
  2319. startDate: '2025-05-09T14:39:09.550922-04:00'
  2320. wasAssociatedWith:
  2321. - identifier: RRID:SCR_019009
  2322. name: DANDI Command Line Interface
  2323. schemaKey: Software
  2324. url: https://github.com/dandi/dandi-cli
  2325. version: 0.66.7
  2326. - description: Metadata generated by DANDI cli
  2327. endDate: '2025-05-09T14:39:09.955268-04:00'
  2328. id: urn:uuid:db7607c8-6c58-4eba-af41-51113a57beff
  2329. name: Metadata generation
  2330. schemaKey: Activity
  2331. startDate: '2025-05-09T14:39:09.955268-04:00'
  2332. wasAssociatedWith:
  2333. - identifier: RRID:SCR_019009
  2334. name: DANDI Command Line Interface
  2335. schemaKey: Software
  2336. url: https://github.com/dandi/dandi-cli
  2337. version: 0.66.7
  2338. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  2339. access:
  2340. - schemaKey: AccessRequirements
  2341. status: dandi:OpenAccess
  2342. blobDateModified: '2022-02-21T15:05:29.520415-05:00'
  2343. contentSize: 722477
  2344. contentUrl:
  2345. - https://api.dandiarchive.org/api/assets/f2c8f0e1-e3fe-42af-be8c-551c0bf06030/download/
  2346. - https://dandiarchive.s3.amazonaws.com/blobs/6d8/6ab/6d86abfe-6dd3-44d6-9bdc-0728102bc796
  2347. dateModified: '2025-05-09T14:39:09.696435-04:00'
  2348. digest:
  2349. dandi:dandi-etag: 1c192c2dacfe73552117ca2104330cdb-1
  2350. dandi:sha2-256: 200025eda35c6f5264b37f2a5a1d361ecc2c613409d1e03d0abc3a1bc612df8c
  2351. encodingFormat: image/png
  2352. id: dandiasset:f2c8f0e1-e3fe-42af-be8c-551c0bf06030
  2353. identifier: f2c8f0e1-e3fe-42af-be8c-551c0bf06030
  2354. path: sub-rat6/micr/sub-rat6_sample-data15_SEM.png
  2355. schemaKey: Asset
  2356. schemaVersion: 0.6.9
  2357. wasAttributedTo:
  2358. - identifier: rat6
  2359. schemaKey: Participant
  2360. wasGeneratedBy:
  2361. - description: Metadata generated by DANDI cli
  2362. endDate: '2025-05-09T14:39:09.145419-04:00'
  2363. id: urn:uuid:6aafd5b9-c0b0-4f52-a061-a1c029382b19
  2364. name: Metadata generation
  2365. schemaKey: Activity
  2366. startDate: '2025-05-09T14:39:09.145419-04:00'
  2367. wasAssociatedWith:
  2368. - identifier: RRID:SCR_019009
  2369. name: DANDI Command Line Interface
  2370. schemaKey: Software
  2371. url: https://github.com/dandi/dandi-cli
  2372. version: 0.66.7
  2373. - description: Metadata generated by DANDI cli
  2374. endDate: '2025-05-09T14:39:09.696359-04:00'
  2375. id: urn:uuid:90740b59-2a9d-4749-93a1-1aa1b42b9651
  2376. name: Metadata generation
  2377. schemaKey: Activity
  2378. startDate: '2025-05-09T14:39:09.696359-04:00'
  2379. wasAssociatedWith:
  2380. - identifier: RRID:SCR_019009
  2381. name: DANDI Command Line Interface
  2382. schemaKey: Software
  2383. url: https://github.com/dandi/dandi-cli
  2384. version: 0.66.7
  2385. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  2386. access:
  2387. - schemaKey: AccessRequirements
  2388. status: dandi:OpenAccess
  2389. blobDateModified: '2022-02-21T15:05:29.531415-05:00'
  2390. contentSize: 188
  2391. contentUrl:
  2392. - https://api.dandiarchive.org/api/assets/fc385878-f947-443d-969b-ffe220174bd7/download/
  2393. - https://dandiarchive.s3.amazonaws.com/blobs/d1d/c55/d1dc55dd-5490-43b8-af05-f704c602ce82
  2394. dateModified: '2025-05-09T14:39:10.588495-04:00'
  2395. digest:
  2396. dandi:dandi-etag: 315301fda48d688053caf2bf22f06bb2-1
  2397. dandi:sha2-256: 6435cc9463d600f167b483af741c9a30afd68cc81d555e2994e35d7a6038fb3d
  2398. encodingFormat: application/json
  2399. id: dandiasset:fc385878-f947-443d-969b-ffe220174bd7
  2400. identifier: fc385878-f947-443d-969b-ffe220174bd7
  2401. path: sub-rat8/micr/sub-rat8_sample-V915_SEM.json
  2402. schemaKey: Asset
  2403. schemaVersion: 0.6.9
  2404. wasAttributedTo:
  2405. - identifier: rat8
  2406. schemaKey: Participant
  2407. wasGeneratedBy:
  2408. - description: Metadata generated by DANDI cli
  2409. endDate: '2025-05-09T14:39:10.292308-04:00'
  2410. id: urn:uuid:df05a69a-beff-4907-94ec-027e9bd7a10a
  2411. name: Metadata generation
  2412. schemaKey: Activity
  2413. startDate: '2025-05-09T14:39:10.292308-04:00'
  2414. wasAssociatedWith:
  2415. - identifier: RRID:SCR_019009
  2416. name: DANDI Command Line Interface
  2417. schemaKey: Software
  2418. url: https://github.com/dandi/dandi-cli
  2419. version: 0.66.7
  2420. - description: Metadata generated by DANDI cli
  2421. endDate: '2025-05-09T14:39:10.588424-04:00'
  2422. id: urn:uuid:1abc6565-86d6-4488-a72e-912eabe80f51
  2423. name: Metadata generation
  2424. schemaKey: Activity
  2425. startDate: '2025-05-09T14:39:10.588424-04:00'
  2426. wasAssociatedWith:
  2427. - identifier: RRID:SCR_019009
  2428. name: DANDI Command Line Interface
  2429. schemaKey: Software
  2430. url: https://github.com/dandi/dandi-cli
  2431. version: 0.66.7
  2432. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  2433. access:
  2434. - schemaKey: AccessRequirements
  2435. status: dandi:OpenAccess
  2436. blobDateModified: '2022-02-21T15:05:29.531415-05:00'
  2437. contentSize: 2297802
  2438. contentUrl:
  2439. - https://api.dandiarchive.org/api/assets/2f09c302-b416-4060-bbc7-db32e3c7e93d/download/
  2440. - https://dandiarchive.s3.amazonaws.com/blobs/27f/ad9/27fad93b-b9a1-439c-bccf-fea201e1688a
  2441. dateModified: '2025-05-09T14:39:10.648185-04:00'
  2442. digest:
  2443. dandi:dandi-etag: 6e67a935b4ee0ed44a89d704de3bf7a9-1
  2444. dandi:sha2-256: 952014851a21ad3cce229d8ba72ea935ad762bbe3bfb48e5f5b972971f57f566
  2445. encodingFormat: image/png
  2446. id: dandiasset:2f09c302-b416-4060-bbc7-db32e3c7e93d
  2447. identifier: 2f09c302-b416-4060-bbc7-db32e3c7e93d
  2448. path: sub-rat7/micr/sub-rat7_sample-Maxo03img60_SEM.png
  2449. schemaKey: Asset
  2450. schemaVersion: 0.6.9
  2451. wasAttributedTo:
  2452. - identifier: rat7
  2453. schemaKey: Participant
  2454. wasGeneratedBy:
  2455. - description: Metadata generated by DANDI cli
  2456. endDate: '2025-05-09T14:39:10.254201-04:00'
  2457. id: urn:uuid:07cbf943-5a15-4a1f-9ec6-a36563d4086d
  2458. name: Metadata generation
  2459. schemaKey: Activity
  2460. startDate: '2025-05-09T14:39:10.254201-04:00'
  2461. wasAssociatedWith:
  2462. - identifier: RRID:SCR_019009
  2463. name: DANDI Command Line Interface
  2464. schemaKey: Software
  2465. url: https://github.com/dandi/dandi-cli
  2466. version: 0.66.7
  2467. - description: Metadata generated by DANDI cli
  2468. endDate: '2025-05-09T14:39:10.648129-04:00'
  2469. id: urn:uuid:120f5921-f1b9-4238-b9d4-1350bcc36f1f
  2470. name: Metadata generation
  2471. schemaKey: Activity
  2472. startDate: '2025-05-09T14:39:10.648129-04:00'
  2473. wasAssociatedWith:
  2474. - identifier: RRID:SCR_019009
  2475. name: DANDI Command Line Interface
  2476. schemaKey: Software
  2477. url: https://github.com/dandi/dandi-cli
  2478. version: 0.66.7
  2479. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  2480. access:
  2481. - schemaKey: AccessRequirements
  2482. status: dandi:OpenAccess
  2483. blobDateModified: '2022-02-21T15:05:29.534415-05:00'
  2484. contentSize: 912029
  2485. contentUrl:
  2486. - https://api.dandiarchive.org/api/assets/2c92050a-d6d3-4508-8cc2-636327849de6/download/
  2487. - https://dandiarchive.s3.amazonaws.com/blobs/6ed/0de/6ed0dec0-4d8a-43ce-84e3-9b37a2f2a5c2
  2488. dateModified: '2025-05-09T14:39:11.264623-04:00'
  2489. digest:
  2490. dandi:dandi-etag: 0eac3761f1c5b0174999114e474f75d4-1
  2491. dandi:sha2-256: 433687677047cc3a2966a27c35325eaef89420fa0b0301d017892f70e3d87fdd
  2492. encodingFormat: image/png
  2493. id: dandiasset:2c92050a-d6d3-4508-8cc2-636327849de6
  2494. identifier: 2c92050a-d6d3-4508-8cc2-636327849de6
  2495. path: sub-rat8/micr/sub-rat8_sample-V915_SEM.png
  2496. schemaKey: Asset
  2497. schemaVersion: 0.6.9
  2498. wasAttributedTo:
  2499. - identifier: rat8
  2500. schemaKey: Participant
  2501. wasGeneratedBy:
  2502. - description: Metadata generated by DANDI cli
  2503. endDate: '2025-05-09T14:39:11.041320-04:00'
  2504. id: urn:uuid:c244f0d3-42d7-4863-a8f3-95192399ed74
  2505. name: Metadata generation
  2506. schemaKey: Activity
  2507. startDate: '2025-05-09T14:39:11.041320-04:00'
  2508. wasAssociatedWith:
  2509. - identifier: RRID:SCR_019009
  2510. name: DANDI Command Line Interface
  2511. schemaKey: Software
  2512. url: https://github.com/dandi/dandi-cli
  2513. version: 0.66.7
  2514. - description: Metadata generated by DANDI cli
  2515. endDate: '2025-05-09T14:39:11.264563-04:00'
  2516. id: urn:uuid:0e3962ad-655b-4c09-bcd2-140dc173be06
  2517. name: Metadata generation
  2518. schemaKey: Activity
  2519. startDate: '2025-05-09T14:39:11.264563-04:00'
  2520. wasAssociatedWith:
  2521. - identifier: RRID:SCR_019009
  2522. name: DANDI Command Line Interface
  2523. schemaKey: Software
  2524. url: https://github.com/dandi/dandi-cli
  2525. version: 0.66.7
  2526. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  2527. access:
  2528. - schemaKey: AccessRequirements
  2529. status: dandi:OpenAccess
  2530. blobDateModified: '2025-05-09T15:20:35.973830-04:00'
  2531. contentSize: 499
  2532. contentUrl:
  2533. - https://api.dandiarchive.org/api/assets/c22b1dd6-0a44-4b28-a949-30159083fa3f/download/
  2534. - https://dandiarchive.s3.amazonaws.com/blobs/0ff/b1d/0ffb1d5b-fa92-42f8-9f50-9f4499c8f20c
  2535. dateModified: '2025-05-09T15:21:58.041457-04:00'
  2536. digest:
  2537. dandi:dandi-etag: 74879cd74e48b13ab8775836be7ef6d8-1
  2538. dandi:sha2-256: 1c6906a6c69883a8489e4d05f736080de969e9648bd8b09d047f66d04ec171cb
  2539. encodingFormat: application/json
  2540. id: dandiasset:c22b1dd6-0a44-4b28-a949-30159083fa3f
  2541. identifier: c22b1dd6-0a44-4b28-a949-30159083fa3f
  2542. path: dataset_description.json
  2543. schemaKey: Asset
  2544. schemaVersion: 0.6.9
  2545. wasGeneratedBy:
  2546. - description: Metadata generated by DANDI cli
  2547. endDate: '2025-05-09T15:21:58.041405-04:00'
  2548. id: urn:uuid:c8ea54c9-aeea-4cc9-9e3b-4a854503930f
  2549. name: Metadata generation
  2550. schemaKey: Activity
  2551. startDate: '2025-05-09T15:21:58.041405-04:00'
  2552. wasAssociatedWith:
  2553. - identifier: RRID:SCR_019009
  2554. name: DANDI Command Line Interface
  2555. schemaKey: Software
  2556. url: https://github.com/dandi/dandi-cli
  2557. version: 0.66.7
Tip!

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

Comments

Loading...