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 133 KB

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
  1. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
  2. access:
  3. - schemaKey: AccessRequirements
  4. status: dandi:OpenAccess
  5. approach: []
  6. blobDateModified: '2025-06-06T15:43:51.911367-04:00'
  7. contentSize: 650636642
  8. contentUrl:
  9. - https://api.dandiarchive.org/api/assets/769cad36-a4d5-4ffa-be7a-77c991d8e62d/download/
  10. - https://dandiarchive.s3.amazonaws.com/blobs/caf/5b2/caf5b226-c9fa-40bd-971e-521392a5389c
  11. dateModified: '2025-06-06T17:55:30.805111-04:00'
  12. datePublished: '2025-06-07T01:01:29.794862+00:00'
  13. digest:
  14. dandi:dandi-etag: 5b160de97f779860abb29976b8a88d08-10
  15. dandi:sha2-256: d120268c03ef41e6369bbe0e4809973bac0937da94498b756dadd72bb356a1ef
  16. encodingFormat: application/x-nwb
  17. id: dandiasset:769cad36-a4d5-4ffa-be7a-77c991d8e62d
  18. identifier: 769cad36-a4d5-4ffa-be7a-77c991d8e62d
  19. keywords:
  20. - Glymphatic, Perivascular space, Periarterial space, Cerebrospinal fluid.
  21. measurementTechnique: []
  22. path: sub-r-22-07-06-rat2/sub-r-22-07-06-rat2_ses-r-22-07-06-rat2-zstasck-up-1x_image.nwb
  23. publishedBy:
  24. endDate: '2025-06-07T01:01:29.794862+00:00'
  25. id: urn:uuid:2dd5848c-927b-406c-8e49-df5c3c31a729
  26. name: DANDI publish
  27. schemaKey: PublishActivity
  28. startDate: '2025-06-07T01:01:29.794862+00:00'
  29. wasAssociatedWith:
  30. - id: urn:uuid:bacb0e60-f1cc-4d8a-ace4-e64f70aeef72
  31. identifier: RRID:SCR_017571
  32. name: DANDI API
  33. schemaKey: Software
  34. version: 0.1.0
  35. schemaKey: Asset
  36. schemaVersion: 0.6.10
  37. variableMeasured: []
  38. wasAttributedTo:
  39. - age:
  40. schemaKey: PropertyValue
  41. unitText: ISO-8601 duration
  42. value: P54D
  43. valueReference:
  44. schemaKey: PropertyValue
  45. value: dandi:BirthReference
  46. identifier: r-22-07-06-rat2
  47. schemaKey: Participant
  48. sex:
  49. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  50. name: Male
  51. schemaKey: SexType
  52. species:
  53. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  54. name: Rattus norvegicus - Norway rat
  55. schemaKey: SpeciesType
  56. wasGeneratedBy:
  57. - description: zstasck-up-1x
  58. identifier: r-22-07-06-rat2_zstasck-up-1x
  59. name: r-22-07-06-rat2_zstasck-up-1x
  60. schemaKey: Session
  61. startDate: '2022-07-06T13:58:11-05:00'
  62. - description: Metadata generated by DANDI cli
  63. endDate: '2025-06-06T17:55:30.805099-04:00'
  64. id: urn:uuid:331613fb-b9c2-4dd7-85ed-7f1459c5e15d
  65. name: Metadata generation
  66. schemaKey: Activity
  67. startDate: '2025-06-06T17:55:30.804202-04:00'
  68. wasAssociatedWith:
  69. - identifier: RRID:SCR_019009
  70. name: DANDI Command Line Interface
  71. schemaKey: Software
  72. url: https://github.com/dandi/dandi-cli
  73. version: 0.69.3
  74. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
  75. access:
  76. - schemaKey: AccessRequirements
  77. status: dandi:OpenAccess
  78. approach: []
  79. blobDateModified: '2025-06-05T22:18:33.525750-04:00'
  80. contentSize: 10093464409
  81. contentUrl:
  82. - https://api.dandiarchive.org/api/assets/388033ba-3be2-44da-965a-35ab6c50bc17/download/
  83. - https://dandiarchive.s3.amazonaws.com/blobs/a7b/a0a/a7ba0a67-01da-4f55-ae2f-718f4059a1b6
  84. dateModified: '2025-06-06T17:52:58.533297-04:00'
  85. datePublished: '2025-06-07T01:01:29.804941+00:00'
  86. digest:
  87. dandi:dandi-etag: 43497c9bebf580a46dc0eed79e8c27c0-151
  88. dandi:sha2-256: e2e87d61c0f3978776922aa9b48e3a64737c2ac0215038792c9a0fca9c72897f
  89. encodingFormat: application/x-nwb
  90. id: dandiasset:388033ba-3be2-44da-965a-35ab6c50bc17
  91. identifier: 388033ba-3be2-44da-965a-35ab6c50bc17
  92. keywords:
  93. - Glymphatic, Perivascular space, Periarterial space, Cerebrospinal fluid.
  94. measurementTechnique: []
  95. path: sub-r-22-07-06-rat2/sub-r-22-07-06-rat2_ses-r-22-07-06-rat2-Particles-down-2x_image.nwb
  96. publishedBy:
  97. endDate: '2025-06-07T01:01:29.804941+00:00'
  98. id: urn:uuid:d45c552c-6fc5-4a86-a28e-bed50e7a6b51
  99. name: DANDI publish
  100. schemaKey: PublishActivity
  101. startDate: '2025-06-07T01:01:29.804941+00:00'
  102. wasAssociatedWith:
  103. - id: urn:uuid:21269f40-e3c8-4425-a324-5ef4259819d8
  104. identifier: RRID:SCR_017571
  105. name: DANDI API
  106. schemaKey: Software
  107. version: 0.1.0
  108. schemaKey: Asset
  109. schemaVersion: 0.6.10
  110. variableMeasured: []
  111. wasAttributedTo:
  112. - age:
  113. schemaKey: PropertyValue
  114. unitText: ISO-8601 duration
  115. value: P54D
  116. valueReference:
  117. schemaKey: PropertyValue
  118. value: dandi:BirthReference
  119. identifier: r-22-07-06-rat2
  120. schemaKey: Participant
  121. sex:
  122. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  123. name: Male
  124. schemaKey: SexType
  125. species:
  126. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  127. name: Rattus norvegicus - Norway rat
  128. schemaKey: SpeciesType
  129. wasGeneratedBy:
  130. - description: Particles-down-2x, ECG, respiration
  131. identifier: r-22-07-06-rat2_Particles-down-2x
  132. name: r-22-07-06-rat2_Particles-down-2x
  133. schemaKey: Session
  134. startDate: '2022-07-06T13:50:59-05:00'
  135. - description: Metadata generated by DANDI cli
  136. endDate: '2025-06-06T17:52:58.533286-04:00'
  137. id: urn:uuid:4dbdcb46-f4ca-447c-985b-54316971d4cb
  138. name: Metadata generation
  139. schemaKey: Activity
  140. startDate: '2025-06-06T17:52:58.532465-04:00'
  141. wasAssociatedWith:
  142. - identifier: RRID:SCR_019009
  143. name: DANDI Command Line Interface
  144. schemaKey: Software
  145. url: https://github.com/dandi/dandi-cli
  146. version: 0.69.3
  147. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
  148. access:
  149. - schemaKey: AccessRequirements
  150. status: dandi:OpenAccess
  151. approach: []
  152. blobDateModified: '2025-06-05T21:54:02.537616-04:00'
  153. contentSize: 10571416016
  154. contentUrl:
  155. - https://api.dandiarchive.org/api/assets/4dd79fc8-4c79-4130-a358-8580ffb27e83/download/
  156. - https://dandiarchive.s3.amazonaws.com/blobs/2fe/e08/2fee08ca-ab01-42b0-bf15-2423d1287a01
  157. dateModified: '2025-06-06T17:54:32.707481-04:00'
  158. datePublished: '2025-06-07T01:01:29.811557+00:00'
  159. digest:
  160. dandi:dandi-etag: ea5bab432bf9d5726aea739f603fff86-158
  161. dandi:sha2-256: 1ae2be5f651e8768330a575ede4fcff799698c87f7f8c0378eb8b51b81bf2c34
  162. encodingFormat: application/x-nwb
  163. id: dandiasset:4dd79fc8-4c79-4130-a358-8580ffb27e83
  164. identifier: 4dd79fc8-4c79-4130-a358-8580ffb27e83
  165. keywords:
  166. - Glymphatic, Perivascular space, Periarterial space, Cerebrospinal fluid.
  167. measurementTechnique: []
  168. path: sub-r-22-07-06-rat2/sub-r-22-07-06-rat2_ses-r-22-07-06-rat2-Particles-up-1x-001_image.nwb
  169. publishedBy:
  170. endDate: '2025-06-07T01:01:29.811557+00:00'
  171. id: urn:uuid:c07b942b-402e-45ba-a391-0ef96123b3d2
  172. name: DANDI publish
  173. schemaKey: PublishActivity
  174. startDate: '2025-06-07T01:01:29.811557+00:00'
  175. wasAssociatedWith:
  176. - id: urn:uuid:dd04df79-4449-4d49-a8f8-5d017b5bc7ec
  177. identifier: RRID:SCR_017571
  178. name: DANDI API
  179. schemaKey: Software
  180. version: 0.1.0
  181. schemaKey: Asset
  182. schemaVersion: 0.6.10
  183. variableMeasured: []
  184. wasAttributedTo:
  185. - age:
  186. schemaKey: PropertyValue
  187. unitText: ISO-8601 duration
  188. value: P54D
  189. valueReference:
  190. schemaKey: PropertyValue
  191. value: dandi:BirthReference
  192. identifier: r-22-07-06-rat2
  193. schemaKey: Participant
  194. sex:
  195. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  196. name: Male
  197. schemaKey: SexType
  198. species:
  199. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  200. name: Rattus norvegicus - Norway rat
  201. schemaKey: SpeciesType
  202. wasGeneratedBy:
  203. - description: Particles-up-1x-001, ECG, respiration
  204. identifier: r-22-07-06-rat2_Particles-up-1x-001
  205. name: r-22-07-06-rat2_Particles-up-1x-001
  206. schemaKey: Session
  207. startDate: '2022-07-06T14:00:35-05:00'
  208. - description: Metadata generated by DANDI cli
  209. endDate: '2025-06-06T17:54:32.707470-04:00'
  210. id: urn:uuid:5d9ae763-1698-4e15-9489-d2d9dbf94798
  211. name: Metadata generation
  212. schemaKey: Activity
  213. startDate: '2025-06-06T17:54:32.706650-04:00'
  214. wasAssociatedWith:
  215. - identifier: RRID:SCR_019009
  216. name: DANDI Command Line Interface
  217. schemaKey: Software
  218. url: https://github.com/dandi/dandi-cli
  219. version: 0.69.3
  220. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
  221. access:
  222. - schemaKey: AccessRequirements
  223. status: dandi:OpenAccess
  224. approach: []
  225. blobDateModified: '2025-06-06T15:44:29.697286-04:00'
  226. contentSize: 503072084
  227. contentUrl:
  228. - https://api.dandiarchive.org/api/assets/66986768-d7d1-4cab-b305-4255f995c199/download/
  229. - https://dandiarchive.s3.amazonaws.com/blobs/029/bf6/029bf697-4540-4395-b264-3edb210470a8
  230. dateModified: '2025-06-06T17:57:28.810543-04:00'
  231. datePublished: '2025-06-07T01:01:29.818191+00:00'
  232. digest:
  233. dandi:dandi-etag: c42707bf7d5be3e3c808beb7efadd90d-8
  234. dandi:sha2-256: 73887302805ba3793fd7291c66bec149955b38172605350c085b7ee0ebeace19
  235. encodingFormat: application/x-nwb
  236. id: dandiasset:66986768-d7d1-4cab-b305-4255f995c199
  237. identifier: 66986768-d7d1-4cab-b305-4255f995c199
  238. keywords:
  239. - Glymphatic, Perivascular space, Periarterial space, Cerebrospinal fluid.
  240. measurementTechnique: []
  241. path: sub-r-22-08-26-rat4/sub-r-22-08-26-rat4_ses-r-22-08-26-rat4-5-Zstack-up_image.nwb
  242. publishedBy:
  243. endDate: '2025-06-07T01:01:29.818191+00:00'
  244. id: urn:uuid:0b8ececf-c0fa-4fd2-b38a-e8b7521863b5
  245. name: DANDI publish
  246. schemaKey: PublishActivity
  247. startDate: '2025-06-07T01:01:29.818191+00:00'
  248. wasAssociatedWith:
  249. - id: urn:uuid:e8ad52cd-116f-4e6b-825b-1a0b1a3748c2
  250. identifier: RRID:SCR_017571
  251. name: DANDI API
  252. schemaKey: Software
  253. version: 0.1.0
  254. schemaKey: Asset
  255. schemaVersion: 0.6.10
  256. variableMeasured: []
  257. wasAttributedTo:
  258. - age:
  259. schemaKey: PropertyValue
  260. unitText: ISO-8601 duration
  261. value: P105D
  262. valueReference:
  263. schemaKey: PropertyValue
  264. value: dandi:BirthReference
  265. identifier: r-22-08-26-rat4
  266. schemaKey: Participant
  267. sex:
  268. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  269. name: Male
  270. schemaKey: SexType
  271. species:
  272. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  273. name: Rattus norvegicus - Norway rat
  274. schemaKey: SpeciesType
  275. wasGeneratedBy:
  276. - description: 5-Zstack-up
  277. identifier: r-22-08-26-rat4_5-Zstack-up
  278. name: r-22-08-26-rat4_5-Zstack-up
  279. schemaKey: Session
  280. startDate: '2022-08-16T16:24:33-05:00'
  281. - description: Metadata generated by DANDI cli
  282. endDate: '2025-06-06T17:57:28.810532-04:00'
  283. id: urn:uuid:6cadaca4-e4a2-4674-b6a2-9d24f48e01eb
  284. name: Metadata generation
  285. schemaKey: Activity
  286. startDate: '2025-06-06T17:57:28.809741-04:00'
  287. wasAssociatedWith:
  288. - identifier: RRID:SCR_019009
  289. name: DANDI Command Line Interface
  290. schemaKey: Software
  291. url: https://github.com/dandi/dandi-cli
  292. version: 0.69.3
  293. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
  294. access:
  295. - schemaKey: AccessRequirements
  296. status: dandi:OpenAccess
  297. approach: []
  298. blobDateModified: '2025-06-05T22:06:26.256775-04:00'
  299. contentSize: 9998381174
  300. contentUrl:
  301. - https://api.dandiarchive.org/api/assets/26fa6ef5-52c8-4383-8634-4242a33feec8/download/
  302. - https://dandiarchive.s3.amazonaws.com/blobs/850/54f/85054f4b-2707-434d-b1c9-e449b7deb898
  303. dateModified: '2025-06-06T17:57:44.264138-04:00'
  304. datePublished: '2025-06-07T01:01:29.825171+00:00'
  305. digest:
  306. dandi:dandi-etag: 699b34afd0de11d8158d5c9355e3a498-149
  307. dandi:sha2-256: 2b0d1b5034a80c53dd18e3119ec7331e70cf7e9d191f255b5af28f839f188564
  308. encodingFormat: application/x-nwb
  309. id: dandiasset:26fa6ef5-52c8-4383-8634-4242a33feec8
  310. identifier: 26fa6ef5-52c8-4383-8634-4242a33feec8
  311. keywords:
  312. - Glymphatic, Perivascular space, Periarterial space, Cerebrospinal fluid.
  313. measurementTechnique: []
  314. path: sub-r-22-07-06-rat2/sub-r-22-07-06-rat2_ses-r-22-07-06-rat2-Particles-up-1x_image.nwb
  315. publishedBy:
  316. endDate: '2025-06-07T01:01:29.825171+00:00'
  317. id: urn:uuid:4ae420cc-4ad1-4600-926d-0df9d4dde0dc
  318. name: DANDI publish
  319. schemaKey: PublishActivity
  320. startDate: '2025-06-07T01:01:29.825171+00:00'
  321. wasAssociatedWith:
  322. - id: urn:uuid:0f9cf430-ebd5-47c8-a754-5da88ba9c42a
  323. identifier: RRID:SCR_017571
  324. name: DANDI API
  325. schemaKey: Software
  326. version: 0.1.0
  327. schemaKey: Asset
  328. schemaVersion: 0.6.10
  329. variableMeasured: []
  330. wasAttributedTo:
  331. - age:
  332. schemaKey: PropertyValue
  333. unitText: ISO-8601 duration
  334. value: P54D
  335. valueReference:
  336. schemaKey: PropertyValue
  337. value: dandi:BirthReference
  338. identifier: r-22-07-06-rat2
  339. schemaKey: Participant
  340. sex:
  341. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  342. name: Male
  343. schemaKey: SexType
  344. species:
  345. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  346. name: Rattus norvegicus - Norway rat
  347. schemaKey: SpeciesType
  348. wasGeneratedBy:
  349. - description: Particles-up-1x, ECG, respiration
  350. identifier: r-22-07-06-rat2_Particles-up-1x
  351. name: r-22-07-06-rat2_Particles-up-1x
  352. schemaKey: Session
  353. startDate: '2022-07-06T13:38:53-05:00'
  354. - description: Metadata generated by DANDI cli
  355. endDate: '2025-06-06T17:57:44.264127-04:00'
  356. id: urn:uuid:29fc2b20-5ced-4fa0-9130-a4a5cca25157
  357. name: Metadata generation
  358. schemaKey: Activity
  359. startDate: '2025-06-06T17:57:44.263315-04:00'
  360. wasAssociatedWith:
  361. - identifier: RRID:SCR_019009
  362. name: DANDI Command Line Interface
  363. schemaKey: Software
  364. url: https://github.com/dandi/dandi-cli
  365. version: 0.69.3
  366. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
  367. access:
  368. - schemaKey: AccessRequirements
  369. status: dandi:OpenAccess
  370. approach: []
  371. blobDateModified: '2025-06-06T15:46:09.330704-04:00'
  372. contentSize: 497000814
  373. contentUrl:
  374. - https://api.dandiarchive.org/api/assets/d995aa93-28b9-4e41-8e72-a74db4f72a13/download/
  375. - https://dandiarchive.s3.amazonaws.com/blobs/395/e07/395e0784-9f7d-46a5-973c-4130e1da21c6
  376. dateModified: '2025-06-06T17:59:13.033792-04:00'
  377. datePublished: '2025-06-07T01:01:29.831842+00:00'
  378. digest:
  379. dandi:dandi-etag: 28d99cd8ac74a513f4d635137933b615-8
  380. dandi:sha2-256: 8e716500d375e3ebb902d9075d9299db0e4500e4966c2e7681af71669b10180f
  381. encodingFormat: application/x-nwb
  382. id: dandiasset:d995aa93-28b9-4e41-8e72-a74db4f72a13
  383. identifier: d995aa93-28b9-4e41-8e72-a74db4f72a13
  384. keywords:
  385. - Glymphatic, Perivascular space, Periarterial space, Cerebrospinal fluid.
  386. measurementTechnique: []
  387. path: sub-r-22-08-26-rat4/sub-r-22-08-26-rat4_ses-r-22-08-26-rat4-7-Zstack-down_image.nwb
  388. publishedBy:
  389. endDate: '2025-06-07T01:01:29.831842+00:00'
  390. id: urn:uuid:a73adbe0-4ee1-4d38-9d19-9939d17480d3
  391. name: DANDI publish
  392. schemaKey: PublishActivity
  393. startDate: '2025-06-07T01:01:29.831842+00:00'
  394. wasAssociatedWith:
  395. - id: urn:uuid:83a1f2fc-1801-4bc0-97ef-75c16c745071
  396. identifier: RRID:SCR_017571
  397. name: DANDI API
  398. schemaKey: Software
  399. version: 0.1.0
  400. schemaKey: Asset
  401. schemaVersion: 0.6.10
  402. variableMeasured: []
  403. wasAttributedTo:
  404. - age:
  405. schemaKey: PropertyValue
  406. unitText: ISO-8601 duration
  407. value: P105D
  408. valueReference:
  409. schemaKey: PropertyValue
  410. value: dandi:BirthReference
  411. identifier: r-22-08-26-rat4
  412. schemaKey: Participant
  413. sex:
  414. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  415. name: Male
  416. schemaKey: SexType
  417. species:
  418. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  419. name: Rattus norvegicus - Norway rat
  420. schemaKey: SpeciesType
  421. wasGeneratedBy:
  422. - description: 7-Zstack-down
  423. identifier: r-22-08-26-rat4_7-Zstack-down
  424. name: r-22-08-26-rat4_7-Zstack-down
  425. schemaKey: Session
  426. startDate: '2022-08-16T16:37:52-05:00'
  427. - description: Metadata generated by DANDI cli
  428. endDate: '2025-06-06T17:59:13.033781-04:00'
  429. id: urn:uuid:30524866-a992-472e-8254-11b49174ff83
  430. name: Metadata generation
  431. schemaKey: Activity
  432. startDate: '2025-06-06T17:59:13.032775-04:00'
  433. wasAssociatedWith:
  434. - identifier: RRID:SCR_019009
  435. name: DANDI Command Line Interface
  436. schemaKey: Software
  437. url: https://github.com/dandi/dandi-cli
  438. version: 0.69.3
  439. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
  440. access:
  441. - schemaKey: AccessRequirements
  442. status: dandi:OpenAccess
  443. approach: []
  444. blobDateModified: '2025-06-05T21:40:59.408769-04:00'
  445. contentSize: 12081586247
  446. contentUrl:
  447. - https://api.dandiarchive.org/api/assets/884fa2b7-6767-4908-b240-31a432e5cefe/download/
  448. - https://dandiarchive.s3.amazonaws.com/blobs/faf/961/faf961d6-7e15-48b0-9a58-a97ed3d77686
  449. dateModified: '2025-06-06T18:00:18.933215-04:00'
  450. datePublished: '2025-06-07T01:01:29.838352+00:00'
  451. digest:
  452. dandi:dandi-etag: 75961bbc00682af5a0ac0ff684ff7956-181
  453. dandi:sha2-256: 196de833c275b3805557f4253499edade810b8b016c482ca2b8f14e05c0e0607
  454. encodingFormat: application/x-nwb
  455. id: dandiasset:884fa2b7-6767-4908-b240-31a432e5cefe
  456. identifier: 884fa2b7-6767-4908-b240-31a432e5cefe
  457. keywords:
  458. - Glymphatic, Perivascular space, Periarterial space, Cerebrospinal fluid.
  459. measurementTechnique: []
  460. path: sub-r-22-07-06-rat2/sub-r-22-07-06-rat2_ses-r-22-07-06-rat2-Particles-up-2x-001_image.nwb
  461. publishedBy:
  462. endDate: '2025-06-07T01:01:29.838352+00:00'
  463. id: urn:uuid:cbf70344-95b5-4355-8053-3f77f9923320
  464. name: DANDI publish
  465. schemaKey: PublishActivity
  466. startDate: '2025-06-07T01:01:29.838352+00:00'
  467. wasAssociatedWith:
  468. - id: urn:uuid:15df1f0a-510c-469c-b1f7-62858608166e
  469. identifier: RRID:SCR_017571
  470. name: DANDI API
  471. schemaKey: Software
  472. version: 0.1.0
  473. schemaKey: Asset
  474. schemaVersion: 0.6.10
  475. variableMeasured: []
  476. wasAttributedTo:
  477. - age:
  478. schemaKey: PropertyValue
  479. unitText: ISO-8601 duration
  480. value: P54D
  481. valueReference:
  482. schemaKey: PropertyValue
  483. value: dandi:BirthReference
  484. identifier: r-22-07-06-rat2
  485. schemaKey: Participant
  486. sex:
  487. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  488. name: Male
  489. schemaKey: SexType
  490. species:
  491. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  492. name: Rattus norvegicus - Norway rat
  493. schemaKey: SpeciesType
  494. wasGeneratedBy:
  495. - description: Particles-up-2x-001, ECG, respiration
  496. identifier: r-22-07-06-rat2_Particles-up-2x-001
  497. name: r-22-07-06-rat2_Particles-up-2x-001
  498. schemaKey: Session
  499. startDate: '2022-07-06T13:44:21-05:00'
  500. - description: Metadata generated by DANDI cli
  501. endDate: '2025-06-06T18:00:18.933203-04:00'
  502. id: urn:uuid:fd7ebbb5-be11-47b9-a369-4576b5664c8f
  503. name: Metadata generation
  504. schemaKey: Activity
  505. startDate: '2025-06-06T18:00:18.932387-04:00'
  506. wasAssociatedWith:
  507. - identifier: RRID:SCR_019009
  508. name: DANDI Command Line Interface
  509. schemaKey: Software
  510. url: https://github.com/dandi/dandi-cli
  511. version: 0.69.3
  512. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
  513. access:
  514. - schemaKey: AccessRequirements
  515. status: dandi:OpenAccess
  516. approach: []
  517. blobDateModified: '2025-06-06T15:47:11.015198-04:00'
  518. contentSize: 788686821
  519. contentUrl:
  520. - https://api.dandiarchive.org/api/assets/b730571f-3455-4b9a-a567-2ff6b60b4ee2/download/
  521. - https://dandiarchive.s3.amazonaws.com/blobs/48d/8ad/48d8ad7e-d65c-4f78-b87a-1003062382a0
  522. dateModified: '2025-06-06T18:02:06.402274-04:00'
  523. datePublished: '2025-06-07T01:01:29.845063+00:00'
  524. digest:
  525. dandi:dandi-etag: 37b436e8112aee66a5d3b5ae69240b2a-12
  526. dandi:sha2-256: 017328a08ee70da150dee3c36b944e77a289f502f3213c185425a4b0f7b4a90b
  527. encodingFormat: application/x-nwb
  528. id: dandiasset:b730571f-3455-4b9a-a567-2ff6b60b4ee2
  529. identifier: b730571f-3455-4b9a-a567-2ff6b60b4ee2
  530. keywords:
  531. - Glymphatic, Perivascular space, Periarterial space, Cerebrospinal fluid.
  532. measurementTechnique: []
  533. path: sub-r-23-03-31/sub-r-23-03-31_ses-r-23-03-31-Zstack-down_image.nwb
  534. publishedBy:
  535. endDate: '2025-06-07T01:01:29.845063+00:00'
  536. id: urn:uuid:25184644-1cd2-4a89-b4c6-6cfebde02390
  537. name: DANDI publish
  538. schemaKey: PublishActivity
  539. startDate: '2025-06-07T01:01:29.845063+00:00'
  540. wasAssociatedWith:
  541. - id: urn:uuid:736de4ec-5a75-4e87-8349-08cc27874af0
  542. identifier: RRID:SCR_017571
  543. name: DANDI API
  544. schemaKey: Software
  545. version: 0.1.0
  546. schemaKey: Asset
  547. schemaVersion: 0.6.10
  548. variableMeasured: []
  549. wasAttributedTo:
  550. - age:
  551. schemaKey: PropertyValue
  552. unitText: ISO-8601 duration
  553. value: P68D
  554. valueReference:
  555. schemaKey: PropertyValue
  556. value: dandi:BirthReference
  557. identifier: r-23-03-31
  558. schemaKey: Participant
  559. sex:
  560. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  561. name: Male
  562. schemaKey: SexType
  563. species:
  564. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  565. name: Rattus norvegicus - Norway rat
  566. schemaKey: SpeciesType
  567. wasGeneratedBy:
  568. - description: Zstack-down
  569. identifier: r-23-03-31_Zstack-down
  570. name: r-23-03-31_Zstack-down
  571. schemaKey: Session
  572. startDate: '2023-03-31T13:28:15-05:00'
  573. - description: Metadata generated by DANDI cli
  574. endDate: '2025-06-06T18:02:06.402263-04:00'
  575. id: urn:uuid:2dfb2452-e08b-4c28-8e2e-b993785551a7
  576. name: Metadata generation
  577. schemaKey: Activity
  578. startDate: '2025-06-06T18:02:06.401434-04:00'
  579. wasAssociatedWith:
  580. - identifier: RRID:SCR_019009
  581. name: DANDI Command Line Interface
  582. schemaKey: Software
  583. url: https://github.com/dandi/dandi-cli
  584. version: 0.69.3
  585. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
  586. access:
  587. - schemaKey: AccessRequirements
  588. status: dandi:OpenAccess
  589. approach: []
  590. blobDateModified: '2025-06-06T15:45:31.630790-04:00'
  591. contentSize: 801507123
  592. contentUrl:
  593. - https://api.dandiarchive.org/api/assets/bfad2bed-076d-4e28-8ea9-d288b44fcbef/download/
  594. - https://dandiarchive.s3.amazonaws.com/blobs/a04/996/a04996b1-829d-4cca-a8e5-b621d4387ab1
  595. dateModified: '2025-06-06T18:02:16.352276-04:00'
  596. datePublished: '2025-06-07T01:01:29.852340+00:00'
  597. digest:
  598. dandi:dandi-etag: 9e0b8fe0764a84a8069fc23ddfbb0315-12
  599. dandi:sha2-256: 66012a627f325546685c188aca97988a2d8acf53687342b2324c61ad4635ed92
  600. encodingFormat: application/x-nwb
  601. id: dandiasset:bfad2bed-076d-4e28-8ea9-d288b44fcbef
  602. identifier: bfad2bed-076d-4e28-8ea9-d288b44fcbef
  603. keywords:
  604. - Glymphatic, Perivascular space, Periarterial space, Cerebrospinal fluid.
  605. measurementTechnique: []
  606. path: sub-r-23-03-31/sub-r-23-03-31_ses-r-23-03-31-Zstack-up_image.nwb
  607. publishedBy:
  608. endDate: '2025-06-07T01:01:29.852340+00:00'
  609. id: urn:uuid:416d9b94-1752-48c2-85d7-f6c519b03fc3
  610. name: DANDI publish
  611. schemaKey: PublishActivity
  612. startDate: '2025-06-07T01:01:29.852340+00:00'
  613. wasAssociatedWith:
  614. - id: urn:uuid:35ed1746-3cc0-43cd-b1cf-17fce00d4c4e
  615. identifier: RRID:SCR_017571
  616. name: DANDI API
  617. schemaKey: Software
  618. version: 0.1.0
  619. schemaKey: Asset
  620. schemaVersion: 0.6.10
  621. variableMeasured: []
  622. wasAttributedTo:
  623. - age:
  624. schemaKey: PropertyValue
  625. unitText: ISO-8601 duration
  626. value: P68D
  627. valueReference:
  628. schemaKey: PropertyValue
  629. value: dandi:BirthReference
  630. identifier: r-23-03-31
  631. schemaKey: Participant
  632. sex:
  633. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  634. name: Male
  635. schemaKey: SexType
  636. species:
  637. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  638. name: Rattus norvegicus - Norway rat
  639. schemaKey: SpeciesType
  640. wasGeneratedBy:
  641. - description: Zstack-up
  642. identifier: r-23-03-31_Zstack-up
  643. name: r-23-03-31_Zstack-up
  644. schemaKey: Session
  645. startDate: '2023-03-31T12:59:46-05:00'
  646. - description: Metadata generated by DANDI cli
  647. endDate: '2025-06-06T18:02:16.352264-04:00'
  648. id: urn:uuid:7a05b8b4-4d88-43e3-bead-c6d9dffb32af
  649. name: Metadata generation
  650. schemaKey: Activity
  651. startDate: '2025-06-06T18:02:16.351393-04:00'
  652. wasAssociatedWith:
  653. - identifier: RRID:SCR_019009
  654. name: DANDI Command Line Interface
  655. schemaKey: Software
  656. url: https://github.com/dandi/dandi-cli
  657. version: 0.69.3
  658. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
  659. access:
  660. - schemaKey: AccessRequirements
  661. status: dandi:OpenAccess
  662. approach: []
  663. blobDateModified: '2025-06-05T22:58:29.792756-04:00'
  664. contentSize: 16328269767
  665. contentUrl:
  666. - https://api.dandiarchive.org/api/assets/41991fb8-9cfa-47ac-b0ba-ad6277c3ec5d/download/
  667. - https://dandiarchive.s3.amazonaws.com/blobs/b86/121/b8612132-548d-4c38-9206-556671e8e652
  668. dateModified: '2025-06-06T18:07:44.468506-04:00'
  669. datePublished: '2025-06-07T01:01:29.860172+00:00'
  670. digest:
  671. dandi:dandi-etag: 8f34f0d01e041ec5939923ce2c55f048-244
  672. dandi:sha2-256: a56ed1464b18ca0292d72e25e348e45a1d5a57fa06c1f8abf69ed20189983609
  673. encodingFormat: application/x-nwb
  674. id: dandiasset:41991fb8-9cfa-47ac-b0ba-ad6277c3ec5d
  675. identifier: 41991fb8-9cfa-47ac-b0ba-ad6277c3ec5d
  676. keywords:
  677. - Glymphatic, Perivascular space, Periarterial space, Cerebrospinal fluid.
  678. measurementTechnique: []
  679. path: sub-r-22-08-26-rat4/sub-r-22-08-26-rat4_ses-r-22-08-26-rat4-3-particles-down_image.nwb
  680. publishedBy:
  681. endDate: '2025-06-07T01:01:29.860172+00:00'
  682. id: urn:uuid:bc9af8b6-7613-4650-8ac5-5e139082dbd0
  683. name: DANDI publish
  684. schemaKey: PublishActivity
  685. startDate: '2025-06-07T01:01:29.860172+00:00'
  686. wasAssociatedWith:
  687. - id: urn:uuid:6b78e8f0-d502-4396-bf69-7929b7270f5c
  688. identifier: RRID:SCR_017571
  689. name: DANDI API
  690. schemaKey: Software
  691. version: 0.1.0
  692. schemaKey: Asset
  693. schemaVersion: 0.6.10
  694. variableMeasured: []
  695. wasAttributedTo:
  696. - age:
  697. schemaKey: PropertyValue
  698. unitText: ISO-8601 duration
  699. value: P105D
  700. valueReference:
  701. schemaKey: PropertyValue
  702. value: dandi:BirthReference
  703. identifier: r-22-08-26-rat4
  704. schemaKey: Participant
  705. sex:
  706. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  707. name: Male
  708. schemaKey: SexType
  709. species:
  710. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  711. name: Rattus norvegicus - Norway rat
  712. schemaKey: SpeciesType
  713. wasGeneratedBy:
  714. - description: 3-particles-down, ECG, respiration
  715. identifier: r-22-08-26-rat4_3-particles-down
  716. name: r-22-08-26-rat4_3-particles-down
  717. schemaKey: Session
  718. startDate: '2022-08-16T16:08:37-05:00'
  719. - description: Metadata generated by DANDI cli
  720. endDate: '2025-06-06T18:07:44.468494-04:00'
  721. id: urn:uuid:d4bd6808-5af6-4d55-9fab-092551c1d5f4
  722. name: Metadata generation
  723. schemaKey: Activity
  724. startDate: '2025-06-06T18:07:44.467481-04:00'
  725. wasAssociatedWith:
  726. - identifier: RRID:SCR_019009
  727. name: DANDI Command Line Interface
  728. schemaKey: Software
  729. url: https://github.com/dandi/dandi-cli
  730. version: 0.69.3
  731. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
  732. access:
  733. - schemaKey: AccessRequirements
  734. status: dandi:OpenAccess
  735. approach: []
  736. blobDateModified: '2025-06-05T22:41:22.667303-04:00'
  737. contentSize: 18586181208
  738. contentUrl:
  739. - https://api.dandiarchive.org/api/assets/f461aae6-c4c2-44b1-9e2c-02242fb6cf20/download/
  740. - https://dandiarchive.s3.amazonaws.com/blobs/469/8b2/4698b24a-dba6-4fe8-be2e-2919b518659c
  741. dateModified: '2025-06-06T18:07:28.144976-04:00'
  742. datePublished: '2025-06-07T01:01:29.866925+00:00'
  743. digest:
  744. dandi:dandi-etag: 20a916208adb8bd58262118618492174-277
  745. dandi:sha2-256: c0ae9a2c3bc7c04551adfb5d1c7d9fefe35f6e6dc7877a02fa367b571c3256fd
  746. encodingFormat: application/x-nwb
  747. id: dandiasset:f461aae6-c4c2-44b1-9e2c-02242fb6cf20
  748. identifier: f461aae6-c4c2-44b1-9e2c-02242fb6cf20
  749. keywords:
  750. - Glymphatic, Perivascular space, Periarterial space, Cerebrospinal fluid.
  751. measurementTechnique: []
  752. path: sub-r-22-08-26-rat4/sub-r-22-08-26-rat4_ses-r-22-08-26-rat4-2-particles-up_image.nwb
  753. publishedBy:
  754. endDate: '2025-06-07T01:01:29.866925+00:00'
  755. id: urn:uuid:858feb4e-8a3e-4160-b260-6e17186e73a9
  756. name: DANDI publish
  757. schemaKey: PublishActivity
  758. startDate: '2025-06-07T01:01:29.866925+00:00'
  759. wasAssociatedWith:
  760. - id: urn:uuid:6d0963f2-bb09-4eec-b279-40ef6d525dfc
  761. identifier: RRID:SCR_017571
  762. name: DANDI API
  763. schemaKey: Software
  764. version: 0.1.0
  765. schemaKey: Asset
  766. schemaVersion: 0.6.10
  767. variableMeasured: []
  768. wasAttributedTo:
  769. - age:
  770. schemaKey: PropertyValue
  771. unitText: ISO-8601 duration
  772. value: P105D
  773. valueReference:
  774. schemaKey: PropertyValue
  775. value: dandi:BirthReference
  776. identifier: r-22-08-26-rat4
  777. schemaKey: Participant
  778. sex:
  779. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  780. name: Male
  781. schemaKey: SexType
  782. species:
  783. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  784. name: Rattus norvegicus - Norway rat
  785. schemaKey: SpeciesType
  786. wasGeneratedBy:
  787. - description: 2-particles-up, ECG, respiration
  788. identifier: r-22-08-26-rat4_2-particles-up
  789. name: r-22-08-26-rat4_2-particles-up
  790. schemaKey: Session
  791. startDate: '2022-08-16T15:56:51-05:00'
  792. - description: Metadata generated by DANDI cli
  793. endDate: '2025-06-06T18:07:28.144964-04:00'
  794. id: urn:uuid:2867a7f2-12e0-47f6-b41b-2dc0152156bc
  795. name: Metadata generation
  796. schemaKey: Activity
  797. startDate: '2025-06-06T18:07:28.144016-04:00'
  798. wasAssociatedWith:
  799. - identifier: RRID:SCR_019009
  800. name: DANDI Command Line Interface
  801. schemaKey: Software
  802. url: https://github.com/dandi/dandi-cli
  803. version: 0.69.3
  804. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
  805. access:
  806. - schemaKey: AccessRequirements
  807. status: dandi:OpenAccess
  808. approach: []
  809. blobDateModified: '2025-06-06T00:05:06.163809-04:00'
  810. contentSize: 12169686869
  811. contentUrl:
  812. - https://api.dandiarchive.org/api/assets/7a79a8c4-1be2-45f9-9d8b-367b7fda0c21/download/
  813. - https://dandiarchive.s3.amazonaws.com/blobs/047/193/047193ad-8daa-4505-9cfa-2e087ff7a2ca
  814. dateModified: '2025-06-06T18:09:42.230676-04:00'
  815. datePublished: '2025-06-07T01:01:29.873741+00:00'
  816. digest:
  817. dandi:dandi-etag: daef6b418b0b86d06a9769149bceb6b2-182
  818. dandi:sha2-256: 0e217fc26b44f77f270b7a386e2a8fb4b8fdd5c72af6d622e15352fe4574df17
  819. encodingFormat: application/x-nwb
  820. id: dandiasset:7a79a8c4-1be2-45f9-9d8b-367b7fda0c21
  821. identifier: 7a79a8c4-1be2-45f9-9d8b-367b7fda0c21
  822. keywords:
  823. - Glymphatic, Perivascular space, Periarterial space, Cerebrospinal fluid.
  824. measurementTechnique: []
  825. path: sub-r-23-03-31/sub-r-23-03-31_ses-r-23-03-31-particles-down-64min_image.nwb
  826. publishedBy:
  827. endDate: '2025-06-07T01:01:29.873741+00:00'
  828. id: urn:uuid:83634402-fca6-44c9-8071-d606fe88fa52
  829. name: DANDI publish
  830. schemaKey: PublishActivity
  831. startDate: '2025-06-07T01:01:29.873741+00:00'
  832. wasAssociatedWith:
  833. - id: urn:uuid:8b09d1cc-cd7b-4ae9-8599-076193496a80
  834. identifier: RRID:SCR_017571
  835. name: DANDI API
  836. schemaKey: Software
  837. version: 0.1.0
  838. schemaKey: Asset
  839. schemaVersion: 0.6.10
  840. variableMeasured: []
  841. wasAttributedTo:
  842. - age:
  843. schemaKey: PropertyValue
  844. unitText: ISO-8601 duration
  845. value: P68D
  846. valueReference:
  847. schemaKey: PropertyValue
  848. value: dandi:BirthReference
  849. identifier: r-23-03-31
  850. schemaKey: Participant
  851. sex:
  852. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  853. name: Male
  854. schemaKey: SexType
  855. species:
  856. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  857. name: Rattus norvegicus - Norway rat
  858. schemaKey: SpeciesType
  859. wasGeneratedBy:
  860. - description: particles-down-64min, ECG, respiration
  861. identifier: r-23-03-31_particles-down-64min
  862. name: r-23-03-31_particles-down-64min
  863. schemaKey: Session
  864. startDate: '2023-03-31T13:21:59-05:00'
  865. - description: Metadata generated by DANDI cli
  866. endDate: '2025-06-06T18:09:42.230664-04:00'
  867. id: urn:uuid:13d207c7-10b8-4520-9ca8-6963c30dd138
  868. name: Metadata generation
  869. schemaKey: Activity
  870. startDate: '2025-06-06T18:09:42.229590-04:00'
  871. wasAssociatedWith:
  872. - identifier: RRID:SCR_019009
  873. name: DANDI Command Line Interface
  874. schemaKey: Software
  875. url: https://github.com/dandi/dandi-cli
  876. version: 0.69.3
  877. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
  878. access:
  879. - schemaKey: AccessRequirements
  880. status: dandi:OpenAccess
  881. approach: []
  882. blobDateModified: '2025-06-05T23:24:20.230075-04:00'
  883. contentSize: 19692953350
  884. contentUrl:
  885. - https://api.dandiarchive.org/api/assets/a22e9521-e5da-496d-9bd0-a3196bd22afd/download/
  886. - https://dandiarchive.s3.amazonaws.com/blobs/94d/c15/94dc159e-9cd7-4615-8f12-da3765dd547d
  887. dateModified: '2025-06-06T18:09:35.205160-04:00'
  888. datePublished: '2025-06-07T01:01:29.880182+00:00'
  889. digest:
  890. dandi:dandi-etag: d9871c54c09845e102c2d40989652fc3-294
  891. dandi:sha2-256: c38bbfda9c3ccd6f62e57775d8b477a0ec60255d30895565ae94718104ec4399
  892. encodingFormat: application/x-nwb
  893. id: dandiasset:a22e9521-e5da-496d-9bd0-a3196bd22afd
  894. identifier: a22e9521-e5da-496d-9bd0-a3196bd22afd
  895. keywords:
  896. - Glymphatic, Perivascular space, Periarterial space, Cerebrospinal fluid.
  897. measurementTechnique: []
  898. path: sub-r-22-08-26-rat4/sub-r-22-08-26-rat4_ses-r-22-08-26-rat4-6-particles-up-001_image.nwb
  899. publishedBy:
  900. endDate: '2025-06-07T01:01:29.880182+00:00'
  901. id: urn:uuid:c38cf12f-b28e-4193-ba53-4d901ae7efa4
  902. name: DANDI publish
  903. schemaKey: PublishActivity
  904. startDate: '2025-06-07T01:01:29.880182+00:00'
  905. wasAssociatedWith:
  906. - id: urn:uuid:b41ac09e-7464-40f1-84ee-f5d1b548c396
  907. identifier: RRID:SCR_017571
  908. name: DANDI API
  909. schemaKey: Software
  910. version: 0.1.0
  911. schemaKey: Asset
  912. schemaVersion: 0.6.10
  913. variableMeasured: []
  914. wasAttributedTo:
  915. - age:
  916. schemaKey: PropertyValue
  917. unitText: ISO-8601 duration
  918. value: P105D
  919. valueReference:
  920. schemaKey: PropertyValue
  921. value: dandi:BirthReference
  922. identifier: r-22-08-26-rat4
  923. schemaKey: Participant
  924. sex:
  925. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  926. name: Male
  927. schemaKey: SexType
  928. species:
  929. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  930. name: Rattus norvegicus - Norway rat
  931. schemaKey: SpeciesType
  932. wasGeneratedBy:
  933. - description: 6-particles-up_001, ECG, respiration
  934. identifier: r-22-08-26-rat4_6-particles-up_001
  935. name: r-22-08-26-rat4_6-particles-up_001
  936. schemaKey: Session
  937. startDate: '2022-08-16T16:26:41-05:00'
  938. - description: Metadata generated by DANDI cli
  939. endDate: '2025-06-06T18:09:35.205145-04:00'
  940. id: urn:uuid:d226c26e-41d7-4c25-84ae-c30d12a46811
  941. name: Metadata generation
  942. schemaKey: Activity
  943. startDate: '2025-06-06T18:09:35.203824-04:00'
  944. wasAssociatedWith:
  945. - identifier: RRID:SCR_019009
  946. name: DANDI Command Line Interface
  947. schemaKey: Software
  948. url: https://github.com/dandi/dandi-cli
  949. version: 0.69.3
  950. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
  951. access:
  952. - schemaKey: AccessRequirements
  953. status: dandi:OpenAccess
  954. approach: []
  955. blobDateModified: '2025-06-05T23:51:30.196769-04:00'
  956. contentSize: 19429734835
  957. contentUrl:
  958. - https://api.dandiarchive.org/api/assets/4bf0837e-c32e-4ffa-84b3-4fc461891bdb/download/
  959. - https://dandiarchive.s3.amazonaws.com/blobs/8df/942/8df94214-84ad-426a-bb21-92b8a748005a
  960. dateModified: '2025-06-06T18:09:54.819323-04:00'
  961. datePublished: '2025-06-07T01:01:29.886374+00:00'
  962. digest:
  963. dandi:dandi-etag: 250ba68faf3671f3f8ba142031a70a65-290
  964. dandi:sha2-256: 2ff81179899e27bdb56bec8e21a1a4e58b0b25ee4b2eb1d4e3a4d9b3644ffb88
  965. encodingFormat: application/x-nwb
  966. id: dandiasset:4bf0837e-c32e-4ffa-84b3-4fc461891bdb
  967. identifier: 4bf0837e-c32e-4ffa-84b3-4fc461891bdb
  968. keywords:
  969. - Glymphatic, Perivascular space, Periarterial space, Cerebrospinal fluid.
  970. measurementTechnique: []
  971. path: sub-r-22-08-26-rat4/sub-r-22-08-26-rat4_ses-r-22-08-26-rat4-8-Particles-down-001_image.nwb
  972. publishedBy:
  973. endDate: '2025-06-07T01:01:29.886374+00:00'
  974. id: urn:uuid:2138534b-ec57-441a-bacc-66e8267e3e54
  975. name: DANDI publish
  976. schemaKey: PublishActivity
  977. startDate: '2025-06-07T01:01:29.886374+00:00'
  978. wasAssociatedWith:
  979. - id: urn:uuid:1cf41bf0-50ff-4753-bcc8-0e896517b6db
  980. identifier: RRID:SCR_017571
  981. name: DANDI API
  982. schemaKey: Software
  983. version: 0.1.0
  984. schemaKey: Asset
  985. schemaVersion: 0.6.10
  986. variableMeasured: []
  987. wasAttributedTo:
  988. - age:
  989. schemaKey: PropertyValue
  990. unitText: ISO-8601 duration
  991. value: P105D
  992. valueReference:
  993. schemaKey: PropertyValue
  994. value: dandi:BirthReference
  995. identifier: r-22-08-26-rat4
  996. schemaKey: Participant
  997. sex:
  998. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  999. name: Male
  1000. schemaKey: SexType
  1001. species:
  1002. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  1003. name: Rattus norvegicus - Norway rat
  1004. schemaKey: SpeciesType
  1005. wasGeneratedBy:
  1006. - description: 8-Particles-down_001, ECG, respiration
  1007. identifier: r-22-08-26-rat4_8-Particles-down_001
  1008. name: r-22-08-26-rat4_8-Particles-down_001
  1009. schemaKey: Session
  1010. startDate: '2022-08-16T16:39:53-05:00'
  1011. - description: Metadata generated by DANDI cli
  1012. endDate: '2025-06-06T18:09:54.819312-04:00'
  1013. id: urn:uuid:2c41d1a4-ac12-4630-af73-41b1fdf72617
  1014. name: Metadata generation
  1015. schemaKey: Activity
  1016. startDate: '2025-06-06T18:09:54.818446-04:00'
  1017. wasAssociatedWith:
  1018. - identifier: RRID:SCR_019009
  1019. name: DANDI Command Line Interface
  1020. schemaKey: Software
  1021. url: https://github.com/dandi/dandi-cli
  1022. version: 0.69.3
  1023. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
  1024. access:
  1025. - schemaKey: AccessRequirements
  1026. status: dandi:OpenAccess
  1027. approach: []
  1028. blobDateModified: '2025-06-06T00:30:07.869650-04:00'
  1029. contentSize: 11185209346
  1030. contentUrl:
  1031. - https://api.dandiarchive.org/api/assets/f47a8a0c-19c7-4fa6-a1cd-08cbc4fc24c4/download/
  1032. - https://dandiarchive.s3.amazonaws.com/blobs/c75/3c6/c753c6cb-d5c7-415e-be08-318fb1ded92b
  1033. dateModified: '2025-06-06T18:23:12.287774-04:00'
  1034. datePublished: '2025-06-07T01:01:29.893100+00:00'
  1035. digest:
  1036. dandi:dandi-etag: bdb8cf3e2498e60fb733a96cb797dac6-167
  1037. dandi:sha2-256: ce65d933f6c85dd72c5c97d7b7c23acda4c2151e10613a21928553f204b15341
  1038. encodingFormat: application/x-nwb
  1039. id: dandiasset:f47a8a0c-19c7-4fa6-a1cd-08cbc4fc24c4
  1040. identifier: f47a8a0c-19c7-4fa6-a1cd-08cbc4fc24c4
  1041. keywords:
  1042. - Glymphatic, Perivascular space, Periarterial space, Cerebrospinal fluid.
  1043. measurementTechnique: []
  1044. path: sub-r-23-03-31/sub-r-23-03-31_ses-r-23-03-31-particles-up-33min_image.nwb
  1045. publishedBy:
  1046. endDate: '2025-06-07T01:01:29.893100+00:00'
  1047. id: urn:uuid:c2a4f9f1-9d5e-4482-827f-ff24d0e363b5
  1048. name: DANDI publish
  1049. schemaKey: PublishActivity
  1050. startDate: '2025-06-07T01:01:29.893100+00:00'
  1051. wasAssociatedWith:
  1052. - id: urn:uuid:0647cae1-110c-45f0-a618-ac8b0a9ae10a
  1053. identifier: RRID:SCR_017571
  1054. name: DANDI API
  1055. schemaKey: Software
  1056. version: 0.1.0
  1057. schemaKey: Asset
  1058. schemaVersion: 0.6.10
  1059. variableMeasured: []
  1060. wasAttributedTo:
  1061. - age:
  1062. schemaKey: PropertyValue
  1063. unitText: ISO-8601 duration
  1064. value: P68D
  1065. valueReference:
  1066. schemaKey: PropertyValue
  1067. value: dandi:BirthReference
  1068. identifier: r-23-03-31
  1069. schemaKey: Participant
  1070. sex:
  1071. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1072. name: Male
  1073. schemaKey: SexType
  1074. species:
  1075. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  1076. name: Rattus norvegicus - Norway rat
  1077. schemaKey: SpeciesType
  1078. wasGeneratedBy:
  1079. - description: particles-up-33min, ECG, respiration
  1080. identifier: r-23-03-31_particles-up-33min
  1081. name: r-23-03-31_particles-up-33min
  1082. schemaKey: Session
  1083. startDate: '2023-03-31T12:52:31-05:00'
  1084. - description: Metadata generated by DANDI cli
  1085. endDate: '2025-06-06T18:23:12.287758-04:00'
  1086. id: urn:uuid:6cc8b06c-c23f-4f7a-bf17-b848c2d61ac8
  1087. name: Metadata generation
  1088. schemaKey: Activity
  1089. startDate: '2025-06-06T18:23:12.286480-04:00'
  1090. wasAssociatedWith:
  1091. - identifier: RRID:SCR_019009
  1092. name: DANDI Command Line Interface
  1093. schemaKey: Software
  1094. url: https://github.com/dandi/dandi-cli
  1095. version: 0.69.3
  1096. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
  1097. access:
  1098. - schemaKey: AccessRequirements
  1099. status: dandi:OpenAccess
  1100. approach: []
  1101. blobDateModified: '2025-06-06T15:50:05.780418-04:00'
  1102. contentSize: 693374083
  1103. contentUrl:
  1104. - https://api.dandiarchive.org/api/assets/03262e59-c142-4c16-9432-7b3728e56e92/download/
  1105. - https://dandiarchive.s3.amazonaws.com/blobs/f1e/7e2/f1e7e2e0-152e-4f60-9311-c66733559c45
  1106. dateModified: '2025-06-06T18:25:36.375856-04:00'
  1107. datePublished: '2025-06-07T01:01:29.899452+00:00'
  1108. digest:
  1109. dandi:dandi-etag: 731b78e353387081ba06d00b4f8409ca-11
  1110. dandi:sha2-256: a4573dda3e0029a66df5a4452423cfbf8ccecd33e7053fe41f1859483c2fbe3e
  1111. encodingFormat: application/x-nwb
  1112. id: dandiasset:03262e59-c142-4c16-9432-7b3728e56e92
  1113. identifier: 03262e59-c142-4c16-9432-7b3728e56e92
  1114. keywords:
  1115. - Glymphatic, Perivascular space, Periarterial space, Cerebrospinal fluid.
  1116. measurementTechnique: []
  1117. path: sub-r-23-09-05/sub-r-23-09-05_ses-r-23-09-05-zstack-art1-up-118min-001_image.nwb
  1118. publishedBy:
  1119. endDate: '2025-06-07T01:01:29.899452+00:00'
  1120. id: urn:uuid:e78121a0-18d9-4e46-9b1b-0664247f5ee3
  1121. name: DANDI publish
  1122. schemaKey: PublishActivity
  1123. startDate: '2025-06-07T01:01:29.899452+00:00'
  1124. wasAssociatedWith:
  1125. - id: urn:uuid:19f036a0-7e89-4702-a1f5-589d2dfc190b
  1126. identifier: RRID:SCR_017571
  1127. name: DANDI API
  1128. schemaKey: Software
  1129. version: 0.1.0
  1130. schemaKey: Asset
  1131. schemaVersion: 0.6.10
  1132. variableMeasured: []
  1133. wasAttributedTo:
  1134. - age:
  1135. schemaKey: PropertyValue
  1136. unitText: ISO-8601 duration
  1137. value: P58D
  1138. valueReference:
  1139. schemaKey: PropertyValue
  1140. value: dandi:BirthReference
  1141. identifier: r-23-09-05
  1142. schemaKey: Participant
  1143. sex:
  1144. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1145. name: Male
  1146. schemaKey: SexType
  1147. species:
  1148. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  1149. name: Rattus norvegicus - Norway rat
  1150. schemaKey: SpeciesType
  1151. wasGeneratedBy:
  1152. - description: zstack-art1-up-118min_001
  1153. identifier: r-23-09-05_zstack-art1-up-118min_001
  1154. name: r-23-09-05_zstack-art1-up-118min_001
  1155. schemaKey: Session
  1156. startDate: '2023-09-05T14:25:11-05:00'
  1157. - description: Metadata generated by DANDI cli
  1158. endDate: '2025-06-06T18:25:36.375845-04:00'
  1159. id: urn:uuid:32a1803f-ca81-4e42-8434-6df300c06e23
  1160. name: Metadata generation
  1161. schemaKey: Activity
  1162. startDate: '2025-06-06T18:25:36.375038-04:00'
  1163. wasAssociatedWith:
  1164. - identifier: RRID:SCR_019009
  1165. name: DANDI Command Line Interface
  1166. schemaKey: Software
  1167. url: https://github.com/dandi/dandi-cli
  1168. version: 0.69.3
  1169. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
  1170. access:
  1171. - schemaKey: AccessRequirements
  1172. status: dandi:OpenAccess
  1173. approach: []
  1174. blobDateModified: '2025-06-06T15:49:16.694234-04:00'
  1175. contentSize: 905930654
  1176. contentUrl:
  1177. - https://api.dandiarchive.org/api/assets/388152d4-3540-42a8-9d79-a84287d289cd/download/
  1178. - https://dandiarchive.s3.amazonaws.com/blobs/ffa/5f9/ffa5f9f8-8032-425d-bf32-98dd274b4888
  1179. dateModified: '2025-06-06T18:26:21.910261-04:00'
  1180. datePublished: '2025-06-07T01:01:29.905996+00:00'
  1181. digest:
  1182. dandi:dandi-etag: 85aecb2e42e5fc0f9d54ad6dd4a69a14-14
  1183. dandi:sha2-256: b660a5587eb3fced795f45c801397c7350adbfb060807930f2ff21e9f3c20000
  1184. encodingFormat: application/x-nwb
  1185. id: dandiasset:388152d4-3540-42a8-9d79-a84287d289cd
  1186. identifier: 388152d4-3540-42a8-9d79-a84287d289cd
  1187. keywords:
  1188. - Glymphatic, Perivascular space, Periarterial space, Cerebrospinal fluid.
  1189. measurementTechnique: []
  1190. path: sub-r-23-09-05/sub-r-23-09-05_ses-r-23-09-05-zstack-art2-down-92min_image.nwb
  1191. publishedBy:
  1192. endDate: '2025-06-07T01:01:29.905996+00:00'
  1193. id: urn:uuid:7d6696e1-1707-4a4a-a20d-9d68311d0802
  1194. name: DANDI publish
  1195. schemaKey: PublishActivity
  1196. startDate: '2025-06-07T01:01:29.905996+00:00'
  1197. wasAssociatedWith:
  1198. - id: urn:uuid:eca1a169-3455-4f60-8f05-20ba3c416c6d
  1199. identifier: RRID:SCR_017571
  1200. name: DANDI API
  1201. schemaKey: Software
  1202. version: 0.1.0
  1203. schemaKey: Asset
  1204. schemaVersion: 0.6.10
  1205. variableMeasured: []
  1206. wasAttributedTo:
  1207. - age:
  1208. schemaKey: PropertyValue
  1209. unitText: ISO-8601 duration
  1210. value: P58D
  1211. valueReference:
  1212. schemaKey: PropertyValue
  1213. value: dandi:BirthReference
  1214. identifier: r-23-09-05
  1215. schemaKey: Participant
  1216. sex:
  1217. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1218. name: Male
  1219. schemaKey: SexType
  1220. species:
  1221. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  1222. name: Rattus norvegicus - Norway rat
  1223. schemaKey: SpeciesType
  1224. wasGeneratedBy:
  1225. - description: zstack-art2-down-92min
  1226. identifier: r-23-09-05_zstack-art2-down-92min
  1227. name: r-23-09-05_zstack-art2-down-92min
  1228. schemaKey: Session
  1229. startDate: '2023-09-05T13:56:09-05:00'
  1230. - description: Metadata generated by DANDI cli
  1231. endDate: '2025-06-06T18:26:21.910249-04:00'
  1232. id: urn:uuid:c0eb1c69-dce7-48c8-8074-873f3e34bd98
  1233. name: Metadata generation
  1234. schemaKey: Activity
  1235. startDate: '2025-06-06T18:26:21.909362-04:00'
  1236. wasAssociatedWith:
  1237. - identifier: RRID:SCR_019009
  1238. name: DANDI Command Line Interface
  1239. schemaKey: Software
  1240. url: https://github.com/dandi/dandi-cli
  1241. version: 0.69.3
  1242. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
  1243. access:
  1244. - schemaKey: AccessRequirements
  1245. status: dandi:OpenAccess
  1246. approach: []
  1247. blobDateModified: '2025-06-06T00:18:32.301489-04:00'
  1248. contentSize: 11808024064
  1249. contentUrl:
  1250. - https://api.dandiarchive.org/api/assets/194a8df6-37dd-462e-9a15-0d05840ba38b/download/
  1251. - https://dandiarchive.s3.amazonaws.com/blobs/54d/828/54d828fd-4729-4e83-8e79-b4c0ef73ca29
  1252. dateModified: '2025-06-06T18:24:00.775631-04:00'
  1253. datePublished: '2025-06-07T01:01:29.912832+00:00'
  1254. digest:
  1255. dandi:dandi-etag: abb188168d199f493abd183c46b36118-176
  1256. dandi:sha2-256: 582db8402fd08513fd7f62fbb2ba9f2da96338823c2f6a2cee3a249cbffaa698
  1257. encodingFormat: application/x-nwb
  1258. id: dandiasset:194a8df6-37dd-462e-9a15-0d05840ba38b
  1259. identifier: 194a8df6-37dd-462e-9a15-0d05840ba38b
  1260. keywords:
  1261. - Glymphatic, Perivascular space, Periarterial space, Cerebrospinal fluid.
  1262. measurementTechnique: []
  1263. path: sub-r-23-03-31/sub-r-23-03-31_ses-r-23-03-31-particles-up2-50min_image.nwb
  1264. publishedBy:
  1265. endDate: '2025-06-07T01:01:29.912832+00:00'
  1266. id: urn:uuid:f8652267-e1d8-48c9-a20a-8da6d8c619cb
  1267. name: DANDI publish
  1268. schemaKey: PublishActivity
  1269. startDate: '2025-06-07T01:01:29.912832+00:00'
  1270. wasAssociatedWith:
  1271. - id: urn:uuid:2fc589ec-7fd4-4f9c-bce8-e50097f6fc3a
  1272. identifier: RRID:SCR_017571
  1273. name: DANDI API
  1274. schemaKey: Software
  1275. version: 0.1.0
  1276. schemaKey: Asset
  1277. schemaVersion: 0.6.10
  1278. variableMeasured: []
  1279. wasAttributedTo:
  1280. - age:
  1281. schemaKey: PropertyValue
  1282. unitText: ISO-8601 duration
  1283. value: P68D
  1284. valueReference:
  1285. schemaKey: PropertyValue
  1286. value: dandi:BirthReference
  1287. identifier: r-23-03-31
  1288. schemaKey: Participant
  1289. sex:
  1290. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1291. name: Male
  1292. schemaKey: SexType
  1293. species:
  1294. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  1295. name: Rattus norvegicus - Norway rat
  1296. schemaKey: SpeciesType
  1297. wasGeneratedBy:
  1298. - description: particles-up2-50min, ECG, respiration
  1299. identifier: r-23-03-31_particles-up2-50min
  1300. name: r-23-03-31_particles-up2-50min
  1301. schemaKey: Session
  1302. startDate: '2023-03-31T13:09:48-05:00'
  1303. - description: Metadata generated by DANDI cli
  1304. endDate: '2025-06-06T18:24:00.775614-04:00'
  1305. id: urn:uuid:e99cef5c-3d80-4d7e-acf2-a42b51f97bce
  1306. name: Metadata generation
  1307. schemaKey: Activity
  1308. startDate: '2025-06-06T18:24:00.774216-04:00'
  1309. wasAssociatedWith:
  1310. - identifier: RRID:SCR_019009
  1311. name: DANDI Command Line Interface
  1312. schemaKey: Software
  1313. url: https://github.com/dandi/dandi-cli
  1314. version: 0.69.3
  1315. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
  1316. access:
  1317. - schemaKey: AccessRequirements
  1318. status: dandi:OpenAccess
  1319. approach: []
  1320. blobDateModified: '2025-06-06T15:48:12.971695-04:00'
  1321. contentSize: 877966361
  1322. contentUrl:
  1323. - https://api.dandiarchive.org/api/assets/cce8b4f9-4280-4ffb-9a76-49ab4a846d4d/download/
  1324. - https://dandiarchive.s3.amazonaws.com/blobs/889/f58/889f58c2-91cd-473e-bed9-a00c10762201
  1325. dateModified: '2025-06-06T18:27:14.543928-04:00'
  1326. datePublished: '2025-06-07T01:01:29.919178+00:00'
  1327. digest:
  1328. dandi:dandi-etag: 38d4e529b367e543bfeb068231c3a74d-14
  1329. dandi:sha2-256: 5e75638da3df5d81887b33c550355ef493f3ea9479d9b266a82087aa3b659af4
  1330. encodingFormat: application/x-nwb
  1331. id: dandiasset:cce8b4f9-4280-4ffb-9a76-49ab4a846d4d
  1332. identifier: cce8b4f9-4280-4ffb-9a76-49ab4a846d4d
  1333. keywords:
  1334. - Glymphatic, Perivascular space, Periarterial space, Cerebrospinal fluid.
  1335. measurementTechnique: []
  1336. path: sub-r-23-09-05/sub-r-23-09-05_ses-r-23-09-05-zstack-art2-up-97min_image.nwb
  1337. publishedBy:
  1338. endDate: '2025-06-07T01:01:29.919178+00:00'
  1339. id: urn:uuid:142a4f8c-5a73-4268-b616-b4fbce9fe2bb
  1340. name: DANDI publish
  1341. schemaKey: PublishActivity
  1342. startDate: '2025-06-07T01:01:29.919178+00:00'
  1343. wasAssociatedWith:
  1344. - id: urn:uuid:ec3380ea-a5b3-40f5-9d8d-066caec1a13d
  1345. identifier: RRID:SCR_017571
  1346. name: DANDI API
  1347. schemaKey: Software
  1348. version: 0.1.0
  1349. schemaKey: Asset
  1350. schemaVersion: 0.6.10
  1351. variableMeasured: []
  1352. wasAttributedTo:
  1353. - age:
  1354. schemaKey: PropertyValue
  1355. unitText: ISO-8601 duration
  1356. value: P58D
  1357. valueReference:
  1358. schemaKey: PropertyValue
  1359. value: dandi:BirthReference
  1360. identifier: r-23-09-05
  1361. schemaKey: Participant
  1362. sex:
  1363. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1364. name: Male
  1365. schemaKey: SexType
  1366. species:
  1367. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  1368. name: Rattus norvegicus - Norway rat
  1369. schemaKey: SpeciesType
  1370. wasGeneratedBy:
  1371. - description: zstack-art2-up-97min
  1372. identifier: r-23-09-05_zstack-art2-up-97min
  1373. name: r-23-09-05_zstack-art2-up-97min
  1374. schemaKey: Session
  1375. startDate: '2023-09-05T14:00:57-05:00'
  1376. - description: Metadata generated by DANDI cli
  1377. endDate: '2025-06-06T18:27:14.543900-04:00'
  1378. id: urn:uuid:a5e558a8-b3b9-483d-a82d-18f2d20e0192
  1379. name: Metadata generation
  1380. schemaKey: Activity
  1381. startDate: '2025-06-06T18:27:14.542528-04:00'
  1382. wasAssociatedWith:
  1383. - identifier: RRID:SCR_019009
  1384. name: DANDI Command Line Interface
  1385. schemaKey: Software
  1386. url: https://github.com/dandi/dandi-cli
  1387. version: 0.69.3
  1388. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
  1389. access:
  1390. - schemaKey: AccessRequirements
  1391. status: dandi:OpenAccess
  1392. approach: []
  1393. blobDateModified: '2025-06-06T00:57:18.589769-04:00'
  1394. contentSize: 21706994463
  1395. contentUrl:
  1396. - https://api.dandiarchive.org/api/assets/a789af93-b430-4d9c-8c1d-a140ef2df386/download/
  1397. - https://dandiarchive.s3.amazonaws.com/blobs/ef1/3e7/ef13e7a5-15a7-46c3-803f-6bd3143a5465
  1398. dateModified: '2025-06-06T18:31:01.929164-04:00'
  1399. datePublished: '2025-06-07T01:01:29.925372+00:00'
  1400. digest:
  1401. dandi:dandi-etag: ec7c190cfbcb4210555da2f8dc4a8c06-324
  1402. dandi:sha2-256: 1ca6eeb3a9ace6e817d03a148f601ad939f96e169f9820a7d9f57539f4e72a2e
  1403. encodingFormat: application/x-nwb
  1404. id: dandiasset:a789af93-b430-4d9c-8c1d-a140ef2df386
  1405. identifier: a789af93-b430-4d9c-8c1d-a140ef2df386
  1406. keywords:
  1407. - Glymphatic, Perivascular space, Periarterial space, Cerebrospinal fluid.
  1408. measurementTechnique: []
  1409. path: sub-r-23-09-05/sub-r-23-09-05_ses-r-23-09-05-particles-art1-up-101min_image.nwb
  1410. publishedBy:
  1411. endDate: '2025-06-07T01:01:29.925372+00:00'
  1412. id: urn:uuid:a4c01686-0f20-4b1b-ac6e-b293e467c0a6
  1413. name: DANDI publish
  1414. schemaKey: PublishActivity
  1415. startDate: '2025-06-07T01:01:29.925372+00:00'
  1416. wasAssociatedWith:
  1417. - id: urn:uuid:e6d27118-f063-45bc-96b3-552b04599a3b
  1418. identifier: RRID:SCR_017571
  1419. name: DANDI API
  1420. schemaKey: Software
  1421. version: 0.1.0
  1422. schemaKey: Asset
  1423. schemaVersion: 0.6.10
  1424. variableMeasured: []
  1425. wasAttributedTo:
  1426. - age:
  1427. schemaKey: PropertyValue
  1428. unitText: ISO-8601 duration
  1429. value: P58D
  1430. valueReference:
  1431. schemaKey: PropertyValue
  1432. value: dandi:BirthReference
  1433. identifier: r-23-09-05
  1434. schemaKey: Participant
  1435. sex:
  1436. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1437. name: Male
  1438. schemaKey: SexType
  1439. species:
  1440. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  1441. name: Rattus norvegicus - Norway rat
  1442. schemaKey: SpeciesType
  1443. wasGeneratedBy:
  1444. - description: particles-art1-up-101min, ECG, respiration
  1445. identifier: r-23-09-05_particles-art1-up-101min
  1446. name: r-23-09-05_particles-art1-up-101min
  1447. schemaKey: Session
  1448. startDate: '2023-09-05T14:05:30-05:00'
  1449. - description: Metadata generated by DANDI cli
  1450. endDate: '2025-06-06T18:31:01.929148-04:00'
  1451. id: urn:uuid:f2594846-311f-4fdb-8b61-9c6704e9fd26
  1452. name: Metadata generation
  1453. schemaKey: Activity
  1454. startDate: '2025-06-06T18:31:01.919279-04:00'
  1455. wasAssociatedWith:
  1456. - identifier: RRID:SCR_019009
  1457. name: DANDI Command Line Interface
  1458. schemaKey: Software
  1459. url: https://github.com/dandi/dandi-cli
  1460. version: 0.69.3
  1461. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
  1462. access:
  1463. - schemaKey: AccessRequirements
  1464. status: dandi:OpenAccess
  1465. approach: []
  1466. blobDateModified: '2025-06-06T15:50:42.324299-04:00'
  1467. contentSize: 471323955
  1468. contentUrl:
  1469. - https://api.dandiarchive.org/api/assets/3f3f02cc-04e2-4563-9c0a-9f472a893251/download/
  1470. - https://dandiarchive.s3.amazonaws.com/blobs/173/2dc/1732dcb7-c909-42d0-994d-07cab5dce826
  1471. dateModified: '2025-06-06T18:35:44.122212-04:00'
  1472. datePublished: '2025-06-07T01:01:29.932676+00:00'
  1473. digest:
  1474. dandi:dandi-etag: cb11b126b703a5b688844ac01f4a11cf-8
  1475. dandi:sha2-256: 4f5e0e17551704b338ff2c78793455a9425a3d5e5d4477804123edf05af516c6
  1476. encodingFormat: application/x-nwb
  1477. id: dandiasset:3f3f02cc-04e2-4563-9c0a-9f472a893251
  1478. identifier: 3f3f02cc-04e2-4563-9c0a-9f472a893251
  1479. keywords:
  1480. - Glymphatic, Perivascular space, Periarterial space, Cerebrospinal fluid.
  1481. measurementTechnique: []
  1482. path: sub-r-23-09-25/sub-r-23-09-25_ses-r-23-09-25-zstack-art1-down-80min_image.nwb
  1483. publishedBy:
  1484. endDate: '2025-06-07T01:01:29.932676+00:00'
  1485. id: urn:uuid:36654f19-e32b-4982-bed3-2a697017fd34
  1486. name: DANDI publish
  1487. schemaKey: PublishActivity
  1488. startDate: '2025-06-07T01:01:29.932676+00:00'
  1489. wasAssociatedWith:
  1490. - id: urn:uuid:242c956f-c898-47a2-b079-fc653a586779
  1491. identifier: RRID:SCR_017571
  1492. name: DANDI API
  1493. schemaKey: Software
  1494. version: 0.1.0
  1495. schemaKey: Asset
  1496. schemaVersion: 0.6.10
  1497. variableMeasured: []
  1498. wasAttributedTo:
  1499. - age:
  1500. schemaKey: PropertyValue
  1501. unitText: ISO-8601 duration
  1502. value: P78D
  1503. valueReference:
  1504. schemaKey: PropertyValue
  1505. value: dandi:BirthReference
  1506. identifier: r-23-09-25
  1507. schemaKey: Participant
  1508. sex:
  1509. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1510. name: Male
  1511. schemaKey: SexType
  1512. species:
  1513. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  1514. name: Rattus norvegicus - Norway rat
  1515. schemaKey: SpeciesType
  1516. wasGeneratedBy:
  1517. - description: zstack-art1-down-80min
  1518. identifier: r-23-09-25_zstack-art1-down-80min
  1519. name: r-23-09-25_zstack-art1-down-80min
  1520. schemaKey: Session
  1521. startDate: '2023-09-25T14:06:00-05:00'
  1522. - description: Metadata generated by DANDI cli
  1523. endDate: '2025-06-06T18:35:44.122200-04:00'
  1524. id: urn:uuid:afae01e7-d77d-46ad-8d76-08e7e172175c
  1525. name: Metadata generation
  1526. schemaKey: Activity
  1527. startDate: '2025-06-06T18:35:44.112926-04:00'
  1528. wasAssociatedWith:
  1529. - identifier: RRID:SCR_019009
  1530. name: DANDI Command Line Interface
  1531. schemaKey: Software
  1532. url: https://github.com/dandi/dandi-cli
  1533. version: 0.69.3
  1534. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
  1535. access:
  1536. - schemaKey: AccessRequirements
  1537. status: dandi:OpenAccess
  1538. approach: []
  1539. blobDateModified: '2025-06-06T15:51:42.506749-04:00'
  1540. contentSize: 793676069
  1541. contentUrl:
  1542. - https://api.dandiarchive.org/api/assets/4d5e8d76-b20a-4785-b0c4-e432b005ad9d/download/
  1543. - https://dandiarchive.s3.amazonaws.com/blobs/df8/0d4/df80d42c-6b1e-4350-9108-30f998f19cb7
  1544. dateModified: '2025-06-06T18:36:17.125320-04:00'
  1545. datePublished: '2025-06-07T01:01:29.939735+00:00'
  1546. digest:
  1547. dandi:dandi-etag: 4dc36291096f6d058ead5e923e0655d9-12
  1548. dandi:sha2-256: c36e8eb696bf1a971b55db4cf8a443d6089a328c18e7dc27a44529a866509d10
  1549. encodingFormat: application/x-nwb
  1550. id: dandiasset:4d5e8d76-b20a-4785-b0c4-e432b005ad9d
  1551. identifier: 4d5e8d76-b20a-4785-b0c4-e432b005ad9d
  1552. keywords:
  1553. - Glymphatic, Perivascular space, Periarterial space, Cerebrospinal fluid.
  1554. measurementTechnique: []
  1555. path: sub-r-23-09-25/sub-r-23-09-25_ses-r-23-09-25-zstack-art1-up-68min_image.nwb
  1556. publishedBy:
  1557. endDate: '2025-06-07T01:01:29.939735+00:00'
  1558. id: urn:uuid:11fc13ef-cb26-47e8-ae2f-dcf0ba2da864
  1559. name: DANDI publish
  1560. schemaKey: PublishActivity
  1561. startDate: '2025-06-07T01:01:29.939735+00:00'
  1562. wasAssociatedWith:
  1563. - id: urn:uuid:3ff17475-8fa9-4b53-a4f4-5448283bf028
  1564. identifier: RRID:SCR_017571
  1565. name: DANDI API
  1566. schemaKey: Software
  1567. version: 0.1.0
  1568. schemaKey: Asset
  1569. schemaVersion: 0.6.10
  1570. variableMeasured: []
  1571. wasAttributedTo:
  1572. - age:
  1573. schemaKey: PropertyValue
  1574. unitText: ISO-8601 duration
  1575. value: P78D
  1576. valueReference:
  1577. schemaKey: PropertyValue
  1578. value: dandi:BirthReference
  1579. identifier: r-23-09-25
  1580. schemaKey: Participant
  1581. sex:
  1582. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1583. name: Male
  1584. schemaKey: SexType
  1585. species:
  1586. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  1587. name: Rattus norvegicus - Norway rat
  1588. schemaKey: SpeciesType
  1589. wasGeneratedBy:
  1590. - description: zstack-art1-up-68min
  1591. identifier: r-23-09-25_zstack-art1-up-68min
  1592. name: r-23-09-25_zstack-art1-up-68min
  1593. schemaKey: Session
  1594. startDate: '2023-09-25T13:53:33-05:00'
  1595. - description: Metadata generated by DANDI cli
  1596. endDate: '2025-06-06T18:36:17.125304-04:00'
  1597. id: urn:uuid:b7a28ad2-35b7-4015-8975-d30419df8e56
  1598. name: Metadata generation
  1599. schemaKey: Activity
  1600. startDate: '2025-06-06T18:36:17.115573-04:00'
  1601. wasAssociatedWith:
  1602. - identifier: RRID:SCR_019009
  1603. name: DANDI Command Line Interface
  1604. schemaKey: Software
  1605. url: https://github.com/dandi/dandi-cli
  1606. version: 0.69.3
  1607. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
  1608. access:
  1609. - schemaKey: AccessRequirements
  1610. status: dandi:OpenAccess
  1611. approach: []
  1612. blobDateModified: '2025-06-06T15:40:21.697262-04:00'
  1613. contentSize: 710307950
  1614. contentUrl:
  1615. - https://api.dandiarchive.org/api/assets/f7311718-0f10-4189-bdef-bde2db8ec95d/download/
  1616. - https://dandiarchive.s3.amazonaws.com/blobs/ea5/c59/ea5c5926-f5ae-4cfe-b9e0-024f82e085d3
  1617. dateModified: '2025-06-06T18:37:03.605694-04:00'
  1618. datePublished: '2025-06-07T01:01:29.946458+00:00'
  1619. digest:
  1620. dandi:dandi-etag: 1964b0c3fa0a99e8670af67cd300a3d2-11
  1621. dandi:sha2-256: c1b6590d98100a1d120c27e44d96323c3d4c88536270ca83936b6098754de3ef
  1622. encodingFormat: application/x-nwb
  1623. id: dandiasset:f7311718-0f10-4189-bdef-bde2db8ec95d
  1624. identifier: f7311718-0f10-4189-bdef-bde2db8ec95d
  1625. keywords:
  1626. - Glymphatic, Perivascular space, Periarterial space, Cerebrospinal fluid.
  1627. measurementTechnique: []
  1628. path: sub-r-24-04-28/sub-r-24-04-28_ses-r-24-04-28-Zstack-art1-bright_image.nwb
  1629. publishedBy:
  1630. endDate: '2025-06-07T01:01:29.946458+00:00'
  1631. id: urn:uuid:716cbe84-48fe-4aaf-9824-453da83a820e
  1632. name: DANDI publish
  1633. schemaKey: PublishActivity
  1634. startDate: '2025-06-07T01:01:29.946458+00:00'
  1635. wasAssociatedWith:
  1636. - id: urn:uuid:4a500f87-2578-4e9c-8d13-dfcc263b9246
  1637. identifier: RRID:SCR_017571
  1638. name: DANDI API
  1639. schemaKey: Software
  1640. version: 0.1.0
  1641. schemaKey: Asset
  1642. schemaVersion: 0.6.10
  1643. variableMeasured: []
  1644. wasAttributedTo:
  1645. - age:
  1646. schemaKey: PropertyValue
  1647. unitText: ISO-8601 duration
  1648. value: P61D
  1649. valueReference:
  1650. schemaKey: PropertyValue
  1651. value: dandi:BirthReference
  1652. identifier: r-24-04-28
  1653. schemaKey: Participant
  1654. sex:
  1655. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  1656. name: Female
  1657. schemaKey: SexType
  1658. species:
  1659. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  1660. name: Rattus norvegicus - Norway rat
  1661. schemaKey: SpeciesType
  1662. wasGeneratedBy:
  1663. - description: Zstack-art1_bright
  1664. identifier: r-24-04-28_Zstack-art1_bright
  1665. name: r-24-04-28_Zstack-art1_bright
  1666. schemaKey: Session
  1667. startDate: '2024-04-28T19:19:22-05:00'
  1668. - description: Metadata generated by DANDI cli
  1669. endDate: '2025-06-06T18:37:03.605678-04:00'
  1670. id: urn:uuid:eb01bfa7-515a-44c5-92d4-3190f119997b
  1671. name: Metadata generation
  1672. schemaKey: Activity
  1673. startDate: '2025-06-06T18:37:03.596152-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.69.3
  1680. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
  1681. access:
  1682. - schemaKey: AccessRequirements
  1683. status: dandi:OpenAccess
  1684. approach: []
  1685. blobDateModified: '2025-06-06T02:29:09.212076-04:00'
  1686. contentSize: 15422643211
  1687. contentUrl:
  1688. - https://api.dandiarchive.org/api/assets/16c88dee-3bbf-4fba-929e-e4a4ffa65f31/download/
  1689. - https://dandiarchive.s3.amazonaws.com/blobs/d56/828/d5682889-0e3c-447a-b114-3fd069c83744
  1690. dateModified: '2025-06-06T18:34:41.619658-04:00'
  1691. datePublished: '2025-06-07T01:01:29.952609+00:00'
  1692. digest:
  1693. dandi:dandi-etag: 37a10334c8bc693cc07e43fa3a65f451-230
  1694. dandi:sha2-256: 328772bb19909bed8281648d0cf05acd2ab025d1b7432089237196ca573dc97c
  1695. encodingFormat: application/x-nwb
  1696. id: dandiasset:16c88dee-3bbf-4fba-929e-e4a4ffa65f31
  1697. identifier: 16c88dee-3bbf-4fba-929e-e4a4ffa65f31
  1698. keywords:
  1699. - Glymphatic, Perivascular space, Periarterial space, Cerebrospinal fluid.
  1700. measurementTechnique: []
  1701. path: sub-r-23-09-25/sub-r-23-09-25_ses-r-23-09-25-particles-art1-down-71min_image.nwb
  1702. publishedBy:
  1703. endDate: '2025-06-07T01:01:29.952609+00:00'
  1704. id: urn:uuid:a4e25570-251b-4386-b677-d2fb25d0c227
  1705. name: DANDI publish
  1706. schemaKey: PublishActivity
  1707. startDate: '2025-06-07T01:01:29.952609+00:00'
  1708. wasAssociatedWith:
  1709. - id: urn:uuid:0eb8dec3-664d-4b73-b745-ae74a9cb11d9
  1710. identifier: RRID:SCR_017571
  1711. name: DANDI API
  1712. schemaKey: Software
  1713. version: 0.1.0
  1714. schemaKey: Asset
  1715. schemaVersion: 0.6.10
  1716. variableMeasured: []
  1717. wasAttributedTo:
  1718. - age:
  1719. schemaKey: PropertyValue
  1720. unitText: ISO-8601 duration
  1721. value: P78D
  1722. valueReference:
  1723. schemaKey: PropertyValue
  1724. value: dandi:BirthReference
  1725. identifier: r-23-09-25
  1726. schemaKey: Participant
  1727. sex:
  1728. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1729. name: Male
  1730. schemaKey: SexType
  1731. species:
  1732. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  1733. name: Rattus norvegicus - Norway rat
  1734. schemaKey: SpeciesType
  1735. wasGeneratedBy:
  1736. - description: particles-art1-down-71min, ECG, respiration
  1737. identifier: r-23-09-25_particles-art1-down-71min
  1738. name: r-23-09-25_particles-art1-down-71min
  1739. schemaKey: Session
  1740. startDate: '2023-09-25T13:57:09-05:00'
  1741. - description: Metadata generated by DANDI cli
  1742. endDate: '2025-06-06T18:34:41.619635-04:00'
  1743. id: urn:uuid:c793ff98-3aa8-48a5-bfde-2a03298edf9d
  1744. name: Metadata generation
  1745. schemaKey: Activity
  1746. startDate: '2025-06-06T18:34:41.609906-04:00'
  1747. wasAssociatedWith:
  1748. - identifier: RRID:SCR_019009
  1749. name: DANDI Command Line Interface
  1750. schemaKey: Software
  1751. url: https://github.com/dandi/dandi-cli
  1752. version: 0.69.3
  1753. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
  1754. access:
  1755. - schemaKey: AccessRequirements
  1756. status: dandi:OpenAccess
  1757. approach: []
  1758. blobDateModified: '2025-06-06T02:10:57.569509-04:00'
  1759. contentSize: 15557697358
  1760. contentUrl:
  1761. - https://api.dandiarchive.org/api/assets/61e2cd10-42f5-42ec-b2e8-958decdb479a/download/
  1762. - https://dandiarchive.s3.amazonaws.com/blobs/bbc/4e6/bbc4e6fa-312a-4c9b-90ce-121b350d649b
  1763. dateModified: '2025-06-06T18:34:48.069529-04:00'
  1764. datePublished: '2025-06-07T01:01:29.958993+00:00'
  1765. digest:
  1766. dandi:dandi-etag: 5b0c9dd9bf50eb833fc73443819c2936-232
  1767. dandi:sha2-256: 4df43aebfc7ac2475159b2959964476bc9d981e0feb49008a4ea88620830f44a
  1768. encodingFormat: application/x-nwb
  1769. id: dandiasset:61e2cd10-42f5-42ec-b2e8-958decdb479a
  1770. identifier: 61e2cd10-42f5-42ec-b2e8-958decdb479a
  1771. keywords:
  1772. - Glymphatic, Perivascular space, Periarterial space, Cerebrospinal fluid.
  1773. measurementTechnique: []
  1774. path: sub-r-23-09-25/sub-r-23-09-25_ses-r-23-09-25-particles-art1-up-58min_image.nwb
  1775. publishedBy:
  1776. endDate: '2025-06-07T01:01:29.958993+00:00'
  1777. id: urn:uuid:386f1656-0def-4ff7-94f2-c0396cae0dee
  1778. name: DANDI publish
  1779. schemaKey: PublishActivity
  1780. startDate: '2025-06-07T01:01:29.958993+00:00'
  1781. wasAssociatedWith:
  1782. - id: urn:uuid:722fb7dd-29ff-4aa5-b55f-a32c17488a6e
  1783. identifier: RRID:SCR_017571
  1784. name: DANDI API
  1785. schemaKey: Software
  1786. version: 0.1.0
  1787. schemaKey: Asset
  1788. schemaVersion: 0.6.10
  1789. variableMeasured: []
  1790. wasAttributedTo:
  1791. - age:
  1792. schemaKey: PropertyValue
  1793. unitText: ISO-8601 duration
  1794. value: P78D
  1795. valueReference:
  1796. schemaKey: PropertyValue
  1797. value: dandi:BirthReference
  1798. identifier: r-23-09-25
  1799. schemaKey: Participant
  1800. sex:
  1801. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1802. name: Male
  1803. schemaKey: SexType
  1804. species:
  1805. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  1806. name: Rattus norvegicus - Norway rat
  1807. schemaKey: SpeciesType
  1808. wasGeneratedBy:
  1809. - description: particles-art1-up-58min, ECG, respiration
  1810. identifier: r-23-09-25_particles-art1-up-58min
  1811. name: r-23-09-25_particles-art1-up-58min
  1812. schemaKey: Session
  1813. startDate: '2023-09-25T13:43:50-05:00'
  1814. - description: Metadata generated by DANDI cli
  1815. endDate: '2025-06-06T18:34:48.069516-04:00'
  1816. id: urn:uuid:aa974694-823c-4aa8-be6d-76a082e0dee6
  1817. name: Metadata generation
  1818. schemaKey: Activity
  1819. startDate: '2025-06-06T18:34:48.060234-04:00'
  1820. wasAssociatedWith:
  1821. - identifier: RRID:SCR_019009
  1822. name: DANDI Command Line Interface
  1823. schemaKey: Software
  1824. url: https://github.com/dandi/dandi-cli
  1825. version: 0.69.3
  1826. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
  1827. access:
  1828. - schemaKey: AccessRequirements
  1829. status: dandi:OpenAccess
  1830. approach: []
  1831. blobDateModified: '2025-06-05T16:58:54.372998-04:00'
  1832. contentSize: 10803961309
  1833. contentUrl:
  1834. - https://api.dandiarchive.org/api/assets/f5f3f80b-4ec0-4977-b591-2edf5de11c9b/download/
  1835. - https://dandiarchive.s3.amazonaws.com/blobs/ad9/bb2/ad9bb29e-cfac-4967-9e53-332acb52b790
  1836. dateModified: '2025-06-06T18:38:38.023369-04:00'
  1837. datePublished: '2025-06-07T01:01:29.967424+00:00'
  1838. digest:
  1839. dandi:dandi-etag: f60b52a0ba2ae0d9a2325140c1470b69-161
  1840. dandi:sha2-256: 7284b593db8db20e6bf6676efd286b84f3f7fcaeb75d7d5fbde692c40b3c2e79
  1841. encodingFormat: application/x-nwb
  1842. id: dandiasset:f5f3f80b-4ec0-4977-b591-2edf5de11c9b
  1843. identifier: f5f3f80b-4ec0-4977-b591-2edf5de11c9b
  1844. keywords:
  1845. - Glymphatic, Perivascular space, Periarterial space, Cerebrospinal fluid.
  1846. measurementTechnique: []
  1847. path: sub-r-24-05-05/sub-r-24-05-05_ses-r-24-05-05-Particles-001_image.nwb
  1848. publishedBy:
  1849. endDate: '2025-06-07T01:01:29.967424+00:00'
  1850. id: urn:uuid:a835db73-fe0d-41d1-8709-289d712118de
  1851. name: DANDI publish
  1852. schemaKey: PublishActivity
  1853. startDate: '2025-06-07T01:01:29.967424+00:00'
  1854. wasAssociatedWith:
  1855. - id: urn:uuid:71ede968-bb98-49f5-8d15-bc6d38c6164f
  1856. identifier: RRID:SCR_017571
  1857. name: DANDI API
  1858. schemaKey: Software
  1859. version: 0.1.0
  1860. schemaKey: Asset
  1861. schemaVersion: 0.6.10
  1862. variableMeasured: []
  1863. wasAttributedTo:
  1864. - age:
  1865. schemaKey: PropertyValue
  1866. unitText: ISO-8601 duration
  1867. value: P67D
  1868. valueReference:
  1869. schemaKey: PropertyValue
  1870. value: dandi:BirthReference
  1871. identifier: r-24-05-05
  1872. schemaKey: Participant
  1873. sex:
  1874. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  1875. name: Female
  1876. schemaKey: SexType
  1877. species:
  1878. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  1879. name: Rattus norvegicus - Norway rat
  1880. schemaKey: SpeciesType
  1881. wasGeneratedBy:
  1882. - description: Particles_001, ECG, respiration
  1883. identifier: r-24-05-05_Particles_001
  1884. name: r-24-05-05_Particles_001
  1885. schemaKey: Session
  1886. startDate: '2024-05-05T15:06:15-05:00'
  1887. - description: Metadata generated by DANDI cli
  1888. endDate: '2025-06-06T18:38:38.023356-04:00'
  1889. id: urn:uuid:657a3321-49c9-4bf5-b456-6d2d2442024d
  1890. name: Metadata generation
  1891. schemaKey: Activity
  1892. startDate: '2025-06-06T18:38:38.014015-04:00'
  1893. wasAssociatedWith:
  1894. - identifier: RRID:SCR_019009
  1895. name: DANDI Command Line Interface
  1896. schemaKey: Software
  1897. url: https://github.com/dandi/dandi-cli
  1898. version: 0.69.3
  1899. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
  1900. access:
  1901. - schemaKey: AccessRequirements
  1902. status: dandi:OpenAccess
  1903. approach: []
  1904. blobDateModified: '2025-06-06T01:23:31.874790-04:00'
  1905. contentSize: 21650096324
  1906. contentUrl:
  1907. - https://api.dandiarchive.org/api/assets/a3f13b0c-9cab-4d6d-b307-67882f888cde/download/
  1908. - https://dandiarchive.s3.amazonaws.com/blobs/ea0/82c/ea082cb6-efad-4d2e-86ab-e22d3aeefe24
  1909. dateModified: '2025-06-06T18:33:28.197866-04:00'
  1910. datePublished: '2025-06-07T01:01:29.973716+00:00'
  1911. digest:
  1912. dandi:dandi-etag: c0fef5ea18816de5c612f0308a6641f8-323
  1913. dandi:sha2-256: 6e598e8884b3666415eb0873ac744a8ef06270cb5884d418406cd59e0904122b
  1914. encodingFormat: application/x-nwb
  1915. id: dandiasset:a3f13b0c-9cab-4d6d-b307-67882f888cde
  1916. identifier: a3f13b0c-9cab-4d6d-b307-67882f888cde
  1917. keywords:
  1918. - Glymphatic, Perivascular space, Periarterial space, Cerebrospinal fluid.
  1919. measurementTechnique: []
  1920. path: sub-r-23-09-05/sub-r-23-09-05_ses-r-23-09-05-particles-art2-down-79min_image.nwb
  1921. publishedBy:
  1922. endDate: '2025-06-07T01:01:29.973716+00:00'
  1923. id: urn:uuid:9c8362a1-3c95-40c7-a8cb-2d0d35116987
  1924. name: DANDI publish
  1925. schemaKey: PublishActivity
  1926. startDate: '2025-06-07T01:01:29.973716+00:00'
  1927. wasAssociatedWith:
  1928. - id: urn:uuid:b740d5bf-faf3-4037-b828-65138aabb33e
  1929. identifier: RRID:SCR_017571
  1930. name: DANDI API
  1931. schemaKey: Software
  1932. version: 0.1.0
  1933. schemaKey: Asset
  1934. schemaVersion: 0.6.10
  1935. variableMeasured: []
  1936. wasAttributedTo:
  1937. - age:
  1938. schemaKey: PropertyValue
  1939. unitText: ISO-8601 duration
  1940. value: P58D
  1941. valueReference:
  1942. schemaKey: PropertyValue
  1943. value: dandi:BirthReference
  1944. identifier: r-23-09-05
  1945. schemaKey: Participant
  1946. sex:
  1947. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1948. name: Male
  1949. schemaKey: SexType
  1950. species:
  1951. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  1952. name: Rattus norvegicus - Norway rat
  1953. schemaKey: SpeciesType
  1954. wasGeneratedBy:
  1955. - description: particles-art2-down-79min, ECG, respiration
  1956. identifier: r-23-09-05_particles-art2-down-79min
  1957. name: r-23-09-05_particles-art2-down-79min
  1958. schemaKey: Session
  1959. startDate: '2023-09-05T13:42:52-05:00'
  1960. - description: Metadata generated by DANDI cli
  1961. endDate: '2025-06-06T18:33:28.197854-04:00'
  1962. id: urn:uuid:06efba05-0a2d-4e04-a1d3-3d90b3835f62
  1963. name: Metadata generation
  1964. schemaKey: Activity
  1965. startDate: '2025-06-06T18:33:28.188344-04:00'
  1966. wasAssociatedWith:
  1967. - identifier: RRID:SCR_019009
  1968. name: DANDI Command Line Interface
  1969. schemaKey: Software
  1970. url: https://github.com/dandi/dandi-cli
  1971. version: 0.69.3
  1972. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
  1973. access:
  1974. - schemaKey: AccessRequirements
  1975. status: dandi:OpenAccess
  1976. approach: []
  1977. blobDateModified: '2025-06-06T01:51:26.933118-04:00'
  1978. contentSize: 21951442640
  1979. contentUrl:
  1980. - https://api.dandiarchive.org/api/assets/1e43a0d6-8ed9-4776-9cba-fb661410c20c/download/
  1981. - https://dandiarchive.s3.amazonaws.com/blobs/021/395/02139512-e997-45ca-a907-a4c6d49556ed
  1982. dateModified: '2025-06-06T18:33:33.834166-04:00'
  1983. datePublished: '2025-06-07T01:01:29.980115+00:00'
  1984. digest:
  1985. dandi:dandi-etag: c088d4eacd262bb3700ced88e94de450-328
  1986. dandi:sha2-256: 292b8eae25222daebb24d722c85d2fadf7f87b384300f5b5823fb5a3ede3a67b
  1987. encodingFormat: application/x-nwb
  1988. id: dandiasset:1e43a0d6-8ed9-4776-9cba-fb661410c20c
  1989. identifier: 1e43a0d6-8ed9-4776-9cba-fb661410c20c
  1990. keywords:
  1991. - Glymphatic, Perivascular space, Periarterial space, Cerebrospinal fluid.
  1992. measurementTechnique: []
  1993. path: sub-r-23-09-05/sub-r-23-09-05_ses-r-23-09-05-particles-art2-up-65min_image.nwb
  1994. publishedBy:
  1995. endDate: '2025-06-07T01:01:29.980115+00:00'
  1996. id: urn:uuid:a6846247-5caa-454d-9d88-144342678c3e
  1997. name: DANDI publish
  1998. schemaKey: PublishActivity
  1999. startDate: '2025-06-07T01:01:29.980115+00:00'
  2000. wasAssociatedWith:
  2001. - id: urn:uuid:de8704be-8555-4ddb-b538-d849a21dc3d0
  2002. identifier: RRID:SCR_017571
  2003. name: DANDI API
  2004. schemaKey: Software
  2005. version: 0.1.0
  2006. schemaKey: Asset
  2007. schemaVersion: 0.6.10
  2008. variableMeasured: []
  2009. wasAttributedTo:
  2010. - age:
  2011. schemaKey: PropertyValue
  2012. unitText: ISO-8601 duration
  2013. value: P58D
  2014. valueReference:
  2015. schemaKey: PropertyValue
  2016. value: dandi:BirthReference
  2017. identifier: r-23-09-05
  2018. schemaKey: Participant
  2019. sex:
  2020. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  2021. name: Male
  2022. schemaKey: SexType
  2023. species:
  2024. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  2025. name: Rattus norvegicus - Norway rat
  2026. schemaKey: SpeciesType
  2027. wasGeneratedBy:
  2028. - description: particles-art2-up-65min, ECG, respiration
  2029. identifier: r-23-09-05_particles-art2-up-65min
  2030. name: r-23-09-05_particles-art2-up-65min
  2031. schemaKey: Session
  2032. startDate: '2023-09-05T13:28:27-05:00'
  2033. - description: Metadata generated by DANDI cli
  2034. endDate: '2025-06-06T18:33:33.834147-04:00'
  2035. id: urn:uuid:16797aea-82d2-4ece-b14b-55e43e130888
  2036. name: Metadata generation
  2037. schemaKey: Activity
  2038. startDate: '2025-06-06T18:33:33.824586-04:00'
  2039. wasAssociatedWith:
  2040. - identifier: RRID:SCR_019009
  2041. name: DANDI Command Line Interface
  2042. schemaKey: Software
  2043. url: https://github.com/dandi/dandi-cli
  2044. version: 0.69.3
  2045. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
  2046. access:
  2047. - schemaKey: AccessRequirements
  2048. status: dandi:OpenAccess
  2049. approach: []
  2050. blobDateModified: '2025-06-05T17:13:55.520695-04:00'
  2051. contentSize: 11264858391
  2052. contentUrl:
  2053. - https://api.dandiarchive.org/api/assets/c7cb0c61-90a9-4da5-8c00-52db7c34452b/download/
  2054. - https://dandiarchive.s3.amazonaws.com/blobs/7d0/3eb/7d03ebeb-cd9b-41b9-bad7-201898b91da9
  2055. dateModified: '2025-06-06T18:52:36.305212-04:00'
  2056. datePublished: '2025-06-07T01:01:29.987371+00:00'
  2057. digest:
  2058. dandi:dandi-etag: 32970d999db9f7e1c7a7d9dc3d783ea6-168
  2059. dandi:sha2-256: 571cf44e85d4f9a9bcd8c2bca2b6918b2bcd3ef7f4c2eb76dac2a391599fd3ed
  2060. encodingFormat: application/x-nwb
  2061. id: dandiasset:c7cb0c61-90a9-4da5-8c00-52db7c34452b
  2062. identifier: c7cb0c61-90a9-4da5-8c00-52db7c34452b
  2063. keywords:
  2064. - Glymphatic, Perivascular space, Periarterial space, Cerebrospinal fluid.
  2065. measurementTechnique: []
  2066. path: sub-r-24-05-05/sub-r-24-05-05_ses-r-24-05-05-Particles-002_image.nwb
  2067. publishedBy:
  2068. endDate: '2025-06-07T01:01:29.987371+00:00'
  2069. id: urn:uuid:13082fae-1e75-4549-aaf8-4e9904808522
  2070. name: DANDI publish
  2071. schemaKey: PublishActivity
  2072. startDate: '2025-06-07T01:01:29.987371+00:00'
  2073. wasAssociatedWith:
  2074. - id: urn:uuid:168319e2-faec-4069-be51-dad9a0a090d1
  2075. identifier: RRID:SCR_017571
  2076. name: DANDI API
  2077. schemaKey: Software
  2078. version: 0.1.0
  2079. schemaKey: Asset
  2080. schemaVersion: 0.6.10
  2081. variableMeasured: []
  2082. wasAttributedTo:
  2083. - age:
  2084. schemaKey: PropertyValue
  2085. unitText: ISO-8601 duration
  2086. value: P67D
  2087. valueReference:
  2088. schemaKey: PropertyValue
  2089. value: dandi:BirthReference
  2090. identifier: r-24-05-05
  2091. schemaKey: Participant
  2092. sex:
  2093. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  2094. name: Female
  2095. schemaKey: SexType
  2096. species:
  2097. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  2098. name: Rattus norvegicus - Norway rat
  2099. schemaKey: SpeciesType
  2100. wasGeneratedBy:
  2101. - description: Particles_002, ECG, respiration
  2102. identifier: r-24-05-05_Particles_002
  2103. name: r-24-05-05_Particles_002
  2104. schemaKey: Session
  2105. startDate: '2024-05-05T15:12:30-05:00'
  2106. - description: Metadata generated by DANDI cli
  2107. endDate: '2025-06-06T18:52:36.305200-04:00'
  2108. id: urn:uuid:73cff6f0-ded1-4fe7-b153-a1eb20e8ae49
  2109. name: Metadata generation
  2110. schemaKey: Activity
  2111. startDate: '2025-06-06T18:52:36.295726-04:00'
  2112. wasAssociatedWith:
  2113. - identifier: RRID:SCR_019009
  2114. name: DANDI Command Line Interface
  2115. schemaKey: Software
  2116. url: https://github.com/dandi/dandi-cli
  2117. version: 0.69.3
  2118. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
  2119. access:
  2120. - schemaKey: AccessRequirements
  2121. status: dandi:OpenAccess
  2122. approach: []
  2123. blobDateModified: '2025-06-06T15:40:52.092987-04:00'
  2124. contentSize: 390540191
  2125. contentUrl:
  2126. - https://api.dandiarchive.org/api/assets/c39d6807-3b0e-43bc-8bc7-7952bcf431ae/download/
  2127. - https://dandiarchive.s3.amazonaws.com/blobs/627/b33/627b3398-de7d-405f-ab44-658d8b63e13d
  2128. dateModified: '2025-06-06T18:56:32.584773-04:00'
  2129. datePublished: '2025-06-07T01:01:29.993582+00:00'
  2130. digest:
  2131. dandi:dandi-etag: 844fe5f192fa7c30f14e0cd86ffb6bed-6
  2132. dandi:sha2-256: 395dcb25b3e2bab554665bea2125e89589a41469713c6d3bbfcb00c8121d5ced
  2133. encodingFormat: application/x-nwb
  2134. id: dandiasset:c39d6807-3b0e-43bc-8bc7-7952bcf431ae
  2135. identifier: c39d6807-3b0e-43bc-8bc7-7952bcf431ae
  2136. keywords:
  2137. - Glymphatic, Perivascular space, Periarterial space, Cerebrospinal fluid.
  2138. measurementTechnique: []
  2139. path: sub-r-24-05-05/sub-r-24-05-05_ses-r-24-05-05-Zstack-001_image.nwb
  2140. publishedBy:
  2141. endDate: '2025-06-07T01:01:29.993582+00:00'
  2142. id: urn:uuid:3eb3ce36-1073-4016-a16f-e7ff9c996ddb
  2143. name: DANDI publish
  2144. schemaKey: PublishActivity
  2145. startDate: '2025-06-07T01:01:29.993582+00:00'
  2146. wasAssociatedWith:
  2147. - id: urn:uuid:4aaa7906-bfd1-4c1b-a1bc-b9f948e2a9af
  2148. identifier: RRID:SCR_017571
  2149. name: DANDI API
  2150. schemaKey: Software
  2151. version: 0.1.0
  2152. schemaKey: Asset
  2153. schemaVersion: 0.6.10
  2154. variableMeasured: []
  2155. wasAttributedTo:
  2156. - age:
  2157. schemaKey: PropertyValue
  2158. unitText: ISO-8601 duration
  2159. value: P67D
  2160. valueReference:
  2161. schemaKey: PropertyValue
  2162. value: dandi:BirthReference
  2163. identifier: r-24-05-05
  2164. schemaKey: Participant
  2165. sex:
  2166. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  2167. name: Female
  2168. schemaKey: SexType
  2169. species:
  2170. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  2171. name: Rattus norvegicus - Norway rat
  2172. schemaKey: SpeciesType
  2173. wasGeneratedBy:
  2174. - description: Zstack_001
  2175. identifier: r-24-05-05_Zstack_001
  2176. name: r-24-05-05_Zstack_001
  2177. schemaKey: Session
  2178. startDate: '2024-05-05T15:29:06-05:00'
  2179. - description: Metadata generated by DANDI cli
  2180. endDate: '2025-06-06T18:56:32.584761-04:00'
  2181. id: urn:uuid:0ddab40d-a402-4fe6-b58d-d9265cc30603
  2182. name: Metadata generation
  2183. schemaKey: Activity
  2184. startDate: '2025-06-06T18:56:32.575452-04:00'
  2185. wasAssociatedWith:
  2186. - identifier: RRID:SCR_019009
  2187. name: DANDI Command Line Interface
  2188. schemaKey: Software
  2189. url: https://github.com/dandi/dandi-cli
  2190. version: 0.69.3
  2191. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
  2192. access:
  2193. - schemaKey: AccessRequirements
  2194. status: dandi:OpenAccess
  2195. approach: []
  2196. blobDateModified: '2025-06-06T15:41:23.431745-04:00'
  2197. contentSize: 410032851
  2198. contentUrl:
  2199. - https://api.dandiarchive.org/api/assets/988813c9-a962-421a-8712-73114bf53700/download/
  2200. - https://dandiarchive.s3.amazonaws.com/blobs/bb8/f63/bb8f6346-7458-4b07-b0e7-fb5bc62b5d91
  2201. dateModified: '2025-06-06T18:56:55.097193-04:00'
  2202. datePublished: '2025-06-07T01:01:30.000275+00:00'
  2203. digest:
  2204. dandi:dandi-etag: e759cc61e53fae734c03f879f30a890b-7
  2205. dandi:sha2-256: 4f9165eacc4342de3752a9a6affea425d9bc1b3af4d2fe28a11c8f9dbc6f0e02
  2206. encodingFormat: application/x-nwb
  2207. id: dandiasset:988813c9-a962-421a-8712-73114bf53700
  2208. identifier: 988813c9-a962-421a-8712-73114bf53700
  2209. keywords:
  2210. - Glymphatic, Perivascular space, Periarterial space, Cerebrospinal fluid.
  2211. measurementTechnique: []
  2212. path: sub-r-24-05-05/sub-r-24-05-05_ses-r-24-05-05-Zstack-002_image.nwb
  2213. publishedBy:
  2214. endDate: '2025-06-07T01:01:30.000275+00:00'
  2215. id: urn:uuid:7d8c808a-45ca-43de-a491-8db6165cdfee
  2216. name: DANDI publish
  2217. schemaKey: PublishActivity
  2218. startDate: '2025-06-07T01:01:30.000275+00:00'
  2219. wasAssociatedWith:
  2220. - id: urn:uuid:24d1257f-6fed-4951-96f4-5aca6fdf84b4
  2221. identifier: RRID:SCR_017571
  2222. name: DANDI API
  2223. schemaKey: Software
  2224. version: 0.1.0
  2225. schemaKey: Asset
  2226. schemaVersion: 0.6.10
  2227. variableMeasured: []
  2228. wasAttributedTo:
  2229. - age:
  2230. schemaKey: PropertyValue
  2231. unitText: ISO-8601 duration
  2232. value: P67D
  2233. valueReference:
  2234. schemaKey: PropertyValue
  2235. value: dandi:BirthReference
  2236. identifier: r-24-05-05
  2237. schemaKey: Participant
  2238. sex:
  2239. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  2240. name: Female
  2241. schemaKey: SexType
  2242. species:
  2243. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  2244. name: Rattus norvegicus - Norway rat
  2245. schemaKey: SpeciesType
  2246. wasGeneratedBy:
  2247. - description: Zstack_002
  2248. identifier: r-24-05-05_Zstack_002
  2249. name: r-24-05-05_Zstack_002
  2250. schemaKey: Session
  2251. startDate: '2024-05-05T15:26:30-05:00'
  2252. - description: Metadata generated by DANDI cli
  2253. endDate: '2025-06-06T18:56:55.097181-04:00'
  2254. id: urn:uuid:615f7c68-6750-46b7-9e39-e059c9e92c1a
  2255. name: Metadata generation
  2256. schemaKey: Activity
  2257. startDate: '2025-06-06T18:56:55.087899-04:00'
  2258. wasAssociatedWith:
  2259. - identifier: RRID:SCR_019009
  2260. name: DANDI Command Line Interface
  2261. schemaKey: Software
  2262. url: https://github.com/dandi/dandi-cli
  2263. version: 0.69.3
  2264. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
  2265. access:
  2266. - schemaKey: AccessRequirements
  2267. status: dandi:OpenAccess
  2268. approach: []
  2269. blobDateModified: '2025-06-06T15:20:14.063304-04:00'
  2270. contentSize: 615722341
  2271. contentUrl:
  2272. - https://api.dandiarchive.org/api/assets/b2d48396-aba2-46f4-a1a4-80a46d8f7df8/download/
  2273. - https://dandiarchive.s3.amazonaws.com/blobs/508/69c/50869c35-7e4a-4ff0-829e-5504235d5f6d
  2274. dateModified: '2025-06-06T18:57:35.216071-04:00'
  2275. datePublished: '2025-06-07T01:01:30.007700+00:00'
  2276. digest:
  2277. dandi:dandi-etag: eeed39262fb5a8e52737f898110bc441-10
  2278. dandi:sha2-256: c57d1e57bdb3143a501f581918c2c4961a0ae2c1a093cae7ff1c6e82b41d4b3b
  2279. encodingFormat: application/x-nwb
  2280. id: dandiasset:b2d48396-aba2-46f4-a1a4-80a46d8f7df8
  2281. identifier: b2d48396-aba2-46f4-a1a4-80a46d8f7df8
  2282. keywords:
  2283. - Glymphatic, Perivascular space, Periarterial space, Cerebrospinal fluid.
  2284. measurementTechnique: []
  2285. path: sub-r-24-07-31/sub-r-24-07-31_ses-r-24-07-31-Zstack-downstream2_image.nwb
  2286. publishedBy:
  2287. endDate: '2025-06-07T01:01:30.007700+00:00'
  2288. id: urn:uuid:98213200-83f8-4be1-be5a-2703ee81eef3
  2289. name: DANDI publish
  2290. schemaKey: PublishActivity
  2291. startDate: '2025-06-07T01:01:30.007700+00:00'
  2292. wasAssociatedWith:
  2293. - id: urn:uuid:60a18adc-68e3-4231-9dbd-18501f1676ee
  2294. identifier: RRID:SCR_017571
  2295. name: DANDI API
  2296. schemaKey: Software
  2297. version: 0.1.0
  2298. schemaKey: Asset
  2299. schemaVersion: 0.6.10
  2300. variableMeasured: []
  2301. wasAttributedTo:
  2302. - age:
  2303. schemaKey: PropertyValue
  2304. unitText: ISO-8601 duration
  2305. value: P70D
  2306. valueReference:
  2307. schemaKey: PropertyValue
  2308. value: dandi:BirthReference
  2309. identifier: r-24-07-31
  2310. schemaKey: Participant
  2311. sex:
  2312. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  2313. name: Male
  2314. schemaKey: SexType
  2315. species:
  2316. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  2317. name: Rattus norvegicus - Norway rat
  2318. schemaKey: SpeciesType
  2319. wasGeneratedBy:
  2320. - description: Zstack-downstream2
  2321. identifier: r-24-07-31_Zstack-downstream2
  2322. name: r-24-07-31_Zstack-downstream2
  2323. schemaKey: Session
  2324. startDate: '2024-07-31T15:42:56-05:00'
  2325. - description: Metadata generated by DANDI cli
  2326. endDate: '2025-06-06T18:57:35.216058-04:00'
  2327. id: urn:uuid:9224b1b4-54cc-4f4a-91f2-8c409218d60e
  2328. name: Metadata generation
  2329. schemaKey: Activity
  2330. startDate: '2025-06-06T18:57:35.206699-04:00'
  2331. wasAssociatedWith:
  2332. - identifier: RRID:SCR_019009
  2333. name: DANDI Command Line Interface
  2334. schemaKey: Software
  2335. url: https://github.com/dandi/dandi-cli
  2336. version: 0.69.3
  2337. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
  2338. access:
  2339. - schemaKey: AccessRequirements
  2340. status: dandi:OpenAccess
  2341. approach: []
  2342. blobDateModified: '2025-06-06T15:31:37.355731-04:00'
  2343. contentSize: 612988776
  2344. contentUrl:
  2345. - https://api.dandiarchive.org/api/assets/20fa0502-cb2e-45fb-967f-fabf819878f8/download/
  2346. - https://dandiarchive.s3.amazonaws.com/blobs/32e/4bf/32e4bf4d-065a-4714-b382-c31d161a2f9b
  2347. dateModified: '2025-06-06T18:58:15.145105-04:00'
  2348. datePublished: '2025-06-07T01:01:30.016362+00:00'
  2349. digest:
  2350. dandi:dandi-etag: 0fc4be772c5b4cb7596452a93777954b-10
  2351. dandi:sha2-256: e72cd0337eda0579bf357787fd6f24ead794a2ab0c2e9cbf6188da88be582421
  2352. encodingFormat: application/x-nwb
  2353. id: dandiasset:20fa0502-cb2e-45fb-967f-fabf819878f8
  2354. identifier: 20fa0502-cb2e-45fb-967f-fabf819878f8
  2355. keywords:
  2356. - Glymphatic, Perivascular space, Periarterial space, Cerebrospinal fluid.
  2357. measurementTechnique: []
  2358. path: sub-r-24-07-31/sub-r-24-07-31_ses-r-24-07-31-Zstack-upstream_image.nwb
  2359. publishedBy:
  2360. endDate: '2025-06-07T01:01:30.016362+00:00'
  2361. id: urn:uuid:e11419b0-603f-4cc1-8c41-bcc12054b357
  2362. name: DANDI publish
  2363. schemaKey: PublishActivity
  2364. startDate: '2025-06-07T01:01:30.016362+00:00'
  2365. wasAssociatedWith:
  2366. - id: urn:uuid:8f1517b5-e3be-4abe-9e7e-045b3b14e5a8
  2367. identifier: RRID:SCR_017571
  2368. name: DANDI API
  2369. schemaKey: Software
  2370. version: 0.1.0
  2371. schemaKey: Asset
  2372. schemaVersion: 0.6.10
  2373. variableMeasured: []
  2374. wasAttributedTo:
  2375. - age:
  2376. schemaKey: PropertyValue
  2377. unitText: ISO-8601 duration
  2378. value: P70D
  2379. valueReference:
  2380. schemaKey: PropertyValue
  2381. value: dandi:BirthReference
  2382. identifier: r-24-07-31
  2383. schemaKey: Participant
  2384. sex:
  2385. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  2386. name: Male
  2387. schemaKey: SexType
  2388. species:
  2389. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  2390. name: Rattus norvegicus - Norway rat
  2391. schemaKey: SpeciesType
  2392. wasGeneratedBy:
  2393. - description: Zstack-upstream
  2394. identifier: r-24-07-31_Zstack-upstream
  2395. name: r-24-07-31_Zstack-upstream
  2396. schemaKey: Session
  2397. startDate: '2024-07-31T15:38:00-05:00'
  2398. - description: Metadata generated by DANDI cli
  2399. endDate: '2025-06-06T18:58:15.145093-04:00'
  2400. id: urn:uuid:97aaa490-be21-40fe-8162-df71d80585ce
  2401. name: Metadata generation
  2402. schemaKey: Activity
  2403. startDate: '2025-06-06T18:58:15.135836-04:00'
  2404. wasAssociatedWith:
  2405. - identifier: RRID:SCR_019009
  2406. name: DANDI Command Line Interface
  2407. schemaKey: Software
  2408. url: https://github.com/dandi/dandi-cli
  2409. version: 0.69.3
  2410. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
  2411. access:
  2412. - schemaKey: AccessRequirements
  2413. status: dandi:OpenAccess
  2414. approach: []
  2415. blobDateModified: '2025-06-05T17:28:26.247559-04:00'
  2416. contentSize: 12464788178
  2417. contentUrl:
  2418. - https://api.dandiarchive.org/api/assets/1bff2151-eb42-4483-979c-0761376368ee/download/
  2419. - https://dandiarchive.s3.amazonaws.com/blobs/4a3/964/4a3964c5-2d9e-4fe2-a835-4f82142d0425
  2420. dateModified: '2025-06-06T18:53:22.184941-04:00'
  2421. datePublished: '2025-06-07T01:01:30.024052+00:00'
  2422. digest:
  2423. dandi:dandi-etag: fa3a50fdc1e5230c6738397711496df9-186
  2424. dandi:sha2-256: 5a426438aa7eb60b052b056e3a54dc4fad8b8dedaafb3dc7fe7ee6aec495e87d
  2425. encodingFormat: application/x-nwb
  2426. id: dandiasset:1bff2151-eb42-4483-979c-0761376368ee
  2427. identifier: 1bff2151-eb42-4483-979c-0761376368ee
  2428. keywords:
  2429. - Glymphatic, Perivascular space, Periarterial space, Cerebrospinal fluid.
  2430. measurementTechnique: []
  2431. path: sub-r-24-05-05/sub-r-24-05-05_ses-r-24-05-05-Particles-later-001_image.nwb
  2432. publishedBy:
  2433. endDate: '2025-06-07T01:01:30.024052+00:00'
  2434. id: urn:uuid:5b7a33e0-96c6-42e2-adfc-e44891378aea
  2435. name: DANDI publish
  2436. schemaKey: PublishActivity
  2437. startDate: '2025-06-07T01:01:30.024052+00:00'
  2438. wasAssociatedWith:
  2439. - id: urn:uuid:4fdc1a56-22a5-4122-82a5-f85e512af68b
  2440. identifier: RRID:SCR_017571
  2441. name: DANDI API
  2442. schemaKey: Software
  2443. version: 0.1.0
  2444. schemaKey: Asset
  2445. schemaVersion: 0.6.10
  2446. variableMeasured: []
  2447. wasAttributedTo:
  2448. - age:
  2449. schemaKey: PropertyValue
  2450. unitText: ISO-8601 duration
  2451. value: P67D
  2452. valueReference:
  2453. schemaKey: PropertyValue
  2454. value: dandi:BirthReference
  2455. identifier: r-24-05-05
  2456. schemaKey: Participant
  2457. sex:
  2458. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  2459. name: Female
  2460. schemaKey: SexType
  2461. species:
  2462. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  2463. name: Rattus norvegicus - Norway rat
  2464. schemaKey: SpeciesType
  2465. wasGeneratedBy:
  2466. - description: Particles_later_001, ECG, respiration
  2467. identifier: r-24-05-05_Particles_later_001
  2468. name: r-24-05-05_Particles_later_001
  2469. schemaKey: Session
  2470. startDate: '2024-05-05T15:54:45-05:00'
  2471. - description: Metadata generated by DANDI cli
  2472. endDate: '2025-06-06T18:53:22.184907-04:00'
  2473. id: urn:uuid:55dbe265-f071-40ab-9d99-1aea5829e1f5
  2474. name: Metadata generation
  2475. schemaKey: Activity
  2476. startDate: '2025-06-06T18:53:22.175110-04:00'
  2477. wasAssociatedWith:
  2478. - identifier: RRID:SCR_019009
  2479. name: DANDI Command Line Interface
  2480. schemaKey: Software
  2481. url: https://github.com/dandi/dandi-cli
  2482. version: 0.69.3
  2483. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
  2484. access:
  2485. - schemaKey: AccessRequirements
  2486. status: dandi:OpenAccess
  2487. approach: []
  2488. blobDateModified: '2025-06-05T15:53:02.501347-04:00'
  2489. contentSize: 11085842017
  2490. contentUrl:
  2491. - https://api.dandiarchive.org/api/assets/3f332a57-f961-45ee-91da-cedb2a6c6191/download/
  2492. - https://dandiarchive.s3.amazonaws.com/blobs/b9c/e53/b9ce53f7-27f8-42ff-b3dc-3eb0eb1166fb
  2493. dateModified: '2025-06-06T18:53:57.615812-04:00'
  2494. datePublished: '2025-06-07T01:01:30.031988+00:00'
  2495. digest:
  2496. dandi:dandi-etag: 933a946a2b1e668592d19aa4f5687baa-166
  2497. dandi:sha2-256: 266dcb86e234e58c4e6f1e21a673d0af9a25a48954dfc4763fea0824d9e8cd71
  2498. encodingFormat: application/x-nwb
  2499. id: dandiasset:3f332a57-f961-45ee-91da-cedb2a6c6191
  2500. identifier: 3f332a57-f961-45ee-91da-cedb2a6c6191
  2501. keywords:
  2502. - Glymphatic, Perivascular space, Periarterial space, Cerebrospinal fluid.
  2503. measurementTechnique: []
  2504. path: sub-r-24-05-05/sub-r-24-05-05_ses-r-24-05-05-Particles_image.nwb
  2505. publishedBy:
  2506. endDate: '2025-06-07T01:01:30.031988+00:00'
  2507. id: urn:uuid:615f116b-811d-404f-a49c-5f14a2439547
  2508. name: DANDI publish
  2509. schemaKey: PublishActivity
  2510. startDate: '2025-06-07T01:01:30.031988+00:00'
  2511. wasAssociatedWith:
  2512. - id: urn:uuid:07e0f863-835d-4e47-9d35-f283282f5af2
  2513. identifier: RRID:SCR_017571
  2514. name: DANDI API
  2515. schemaKey: Software
  2516. version: 0.1.0
  2517. schemaKey: Asset
  2518. schemaVersion: 0.6.10
  2519. variableMeasured: []
  2520. wasAttributedTo:
  2521. - age:
  2522. schemaKey: PropertyValue
  2523. unitText: ISO-8601 duration
  2524. value: P67D
  2525. valueReference:
  2526. schemaKey: PropertyValue
  2527. value: dandi:BirthReference
  2528. identifier: r-24-05-05
  2529. schemaKey: Participant
  2530. sex:
  2531. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  2532. name: Female
  2533. schemaKey: SexType
  2534. species:
  2535. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  2536. name: Rattus norvegicus - Norway rat
  2537. schemaKey: SpeciesType
  2538. wasGeneratedBy:
  2539. - description: Particles, ECG, respiration
  2540. identifier: r-24-05-05_Particles
  2541. name: r-24-05-05_Particles
  2542. schemaKey: Session
  2543. startDate: '2024-05-05T14:59:36-05:00'
  2544. - description: Metadata generated by DANDI cli
  2545. endDate: '2025-06-06T18:53:57.615796-04:00'
  2546. id: urn:uuid:ade6386b-f894-4b92-875e-f3851c47c950
  2547. name: Metadata generation
  2548. schemaKey: Activity
  2549. startDate: '2025-06-06T18:53:57.605981-04:00'
  2550. wasAssociatedWith:
  2551. - identifier: RRID:SCR_019009
  2552. name: DANDI Command Line Interface
  2553. schemaKey: Software
  2554. url: https://github.com/dandi/dandi-cli
  2555. version: 0.69.3
  2556. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
  2557. access:
  2558. - schemaKey: AccessRequirements
  2559. status: dandi:OpenAccess
  2560. approach: []
  2561. blobDateModified: '2025-06-05T17:42:17.723354-04:00'
  2562. contentSize: 12209419478
  2563. contentUrl:
  2564. - https://api.dandiarchive.org/api/assets/7158dcc2-c054-4161-b40d-e2895bb97e98/download/
  2565. - https://dandiarchive.s3.amazonaws.com/blobs/232/9a6/2329a60f-f4e3-4554-bb56-d20e5613afbd
  2566. dateModified: '2025-06-06T18:54:04.586880-04:00'
  2567. datePublished: '2025-06-07T01:01:30.039616+00:00'
  2568. digest:
  2569. dandi:dandi-etag: f965e96184985884c22846cdf9b76524-182
  2570. dandi:sha2-256: 6bea5fbd258e553ef04ed26597c51e70739556c041a79b13d1682a9ee3355682
  2571. encodingFormat: application/x-nwb
  2572. id: dandiasset:7158dcc2-c054-4161-b40d-e2895bb97e98
  2573. identifier: 7158dcc2-c054-4161-b40d-e2895bb97e98
  2574. keywords:
  2575. - Glymphatic, Perivascular space, Periarterial space, Cerebrospinal fluid.
  2576. measurementTechnique: []
  2577. path: sub-r-24-05-05/sub-r-24-05-05_ses-r-24-05-05-Particles-later_image.nwb
  2578. publishedBy:
  2579. endDate: '2025-06-07T01:01:30.039616+00:00'
  2580. id: urn:uuid:ff103797-2e9e-47df-8489-6a012f0bc323
  2581. name: DANDI publish
  2582. schemaKey: PublishActivity
  2583. startDate: '2025-06-07T01:01:30.039616+00:00'
  2584. wasAssociatedWith:
  2585. - id: urn:uuid:a00c5067-5ea4-40f7-9c95-ecc1537d9251
  2586. identifier: RRID:SCR_017571
  2587. name: DANDI API
  2588. schemaKey: Software
  2589. version: 0.1.0
  2590. schemaKey: Asset
  2591. schemaVersion: 0.6.10
  2592. variableMeasured: []
  2593. wasAttributedTo:
  2594. - age:
  2595. schemaKey: PropertyValue
  2596. unitText: ISO-8601 duration
  2597. value: P67D
  2598. valueReference:
  2599. schemaKey: PropertyValue
  2600. value: dandi:BirthReference
  2601. identifier: r-24-05-05
  2602. schemaKey: Participant
  2603. sex:
  2604. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  2605. name: Female
  2606. schemaKey: SexType
  2607. species:
  2608. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  2609. name: Rattus norvegicus - Norway rat
  2610. schemaKey: SpeciesType
  2611. wasGeneratedBy:
  2612. - description: Particles_later, ECG, respiration
  2613. identifier: r-24-05-05_Particles_later
  2614. name: r-24-05-05_Particles_later
  2615. schemaKey: Session
  2616. startDate: '2024-05-05T15:33:28-05:00'
  2617. - description: Metadata generated by DANDI cli
  2618. endDate: '2025-06-06T18:54:04.586868-04:00'
  2619. id: urn:uuid:3119331d-ef3e-4e69-938b-d78af4624015
  2620. name: Metadata generation
  2621. schemaKey: Activity
  2622. startDate: '2025-06-06T18:54:04.577544-04:00'
  2623. wasAssociatedWith:
  2624. - identifier: RRID:SCR_019009
  2625. name: DANDI Command Line Interface
  2626. schemaKey: Software
  2627. url: https://github.com/dandi/dandi-cli
  2628. version: 0.69.3
  2629. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
  2630. access:
  2631. - schemaKey: AccessRequirements
  2632. status: dandi:OpenAccess
  2633. approach: []
  2634. blobDateModified: '2025-06-05T17:56:04.929516-04:00'
  2635. contentSize: 12726037589
  2636. contentUrl:
  2637. - https://api.dandiarchive.org/api/assets/68c393a6-cf91-4119-9734-3a38f9265fe9/download/
  2638. - https://dandiarchive.s3.amazonaws.com/blobs/10e/7fb/10e7fb59-bcce-49b0-9fba-114e0271f597
  2639. dateModified: '2025-06-06T18:54:02.002074-04:00'
  2640. datePublished: '2025-06-07T01:01:30.047580+00:00'
  2641. digest:
  2642. dandi:dandi-etag: 9ca8e00950851bcec9600af9698dd7ab-190
  2643. dandi:sha2-256: 828cac52d032ea1fc05551ac423cfa3f40c83f441fbcd4ac464bd2e41fd6bddc
  2644. encodingFormat: application/x-nwb
  2645. id: dandiasset:68c393a6-cf91-4119-9734-3a38f9265fe9
  2646. identifier: 68c393a6-cf91-4119-9734-3a38f9265fe9
  2647. keywords:
  2648. - Glymphatic, Perivascular space, Periarterial space, Cerebrospinal fluid.
  2649. measurementTechnique: []
  2650. path: sub-r-24-05-05/sub-r-24-05-05_ses-r-24-05-05-Particles-later-002_image.nwb
  2651. publishedBy:
  2652. endDate: '2025-06-07T01:01:30.047580+00:00'
  2653. id: urn:uuid:6e2317a7-81d6-4dcb-9a82-f28e8d1445c9
  2654. name: DANDI publish
  2655. schemaKey: PublishActivity
  2656. startDate: '2025-06-07T01:01:30.047580+00:00'
  2657. wasAssociatedWith:
  2658. - id: urn:uuid:4f41289b-6239-4b45-b965-68ed4d16943f
  2659. identifier: RRID:SCR_017571
  2660. name: DANDI API
  2661. schemaKey: Software
  2662. version: 0.1.0
  2663. schemaKey: Asset
  2664. schemaVersion: 0.6.10
  2665. variableMeasured: []
  2666. wasAttributedTo:
  2667. - age:
  2668. schemaKey: PropertyValue
  2669. unitText: ISO-8601 duration
  2670. value: P67D
  2671. valueReference:
  2672. schemaKey: PropertyValue
  2673. value: dandi:BirthReference
  2674. identifier: r-24-05-05
  2675. schemaKey: Participant
  2676. sex:
  2677. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  2678. name: Female
  2679. schemaKey: SexType
  2680. species:
  2681. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  2682. name: Rattus norvegicus - Norway rat
  2683. schemaKey: SpeciesType
  2684. wasGeneratedBy:
  2685. - description: Particles_later_002, ECG, respiration
  2686. identifier: r-24-05-05_Particles_later_002
  2687. name: r-24-05-05_Particles_later_002
  2688. schemaKey: Session
  2689. startDate: '2024-05-05T16:01:02-05:00'
  2690. - description: Metadata generated by DANDI cli
  2691. endDate: '2025-06-06T18:54:02.002063-04:00'
  2692. id: urn:uuid:089835b1-a704-450c-a394-e17ed112f3f8
  2693. name: Metadata generation
  2694. schemaKey: Activity
  2695. startDate: '2025-06-06T18:54:02.000974-04:00'
  2696. wasAssociatedWith:
  2697. - identifier: RRID:SCR_019009
  2698. name: DANDI Command Line Interface
  2699. schemaKey: Software
  2700. url: https://github.com/dandi/dandi-cli
  2701. version: 0.69.3
  2702. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
  2703. access:
  2704. - schemaKey: AccessRequirements
  2705. status: dandi:OpenAccess
  2706. approach: []
  2707. blobDateModified: '2025-06-05T18:24:13.580819-04:00'
  2708. contentSize: 11410546754
  2709. contentUrl:
  2710. - https://api.dandiarchive.org/api/assets/39cb90d2-da00-4b0b-bf6c-96ad0700ab8f/download/
  2711. - https://dandiarchive.s3.amazonaws.com/blobs/f75/481/f75481c6-2adb-4fde-a08c-c68653a5da0b
  2712. dateModified: '2025-06-06T18:59:47.126356-04:00'
  2713. datePublished: '2025-06-07T01:01:30.055809+00:00'
  2714. digest:
  2715. dandi:dandi-etag: 5880d133500bdb4ce65c0e85fed56d48-171
  2716. dandi:sha2-256: f31889b83dd5048fd31fc2f1d12c8aff34ec2b10bda97be4dda0fbb4749e2a93
  2717. encodingFormat: application/x-nwb
  2718. id: dandiasset:39cb90d2-da00-4b0b-bf6c-96ad0700ab8f
  2719. identifier: 39cb90d2-da00-4b0b-bf6c-96ad0700ab8f
  2720. keywords:
  2721. - Glymphatic, Perivascular space, Periarterial space, Cerebrospinal fluid.
  2722. measurementTechnique: []
  2723. path: sub-r-24-07-31/sub-r-24-07-31_ses-r-24-07-31-particles-downstream-001_image.nwb
  2724. publishedBy:
  2725. endDate: '2025-06-07T01:01:30.055809+00:00'
  2726. id: urn:uuid:78ad2d1b-8bcd-42f6-b64b-429ce9837a5f
  2727. name: DANDI publish
  2728. schemaKey: PublishActivity
  2729. startDate: '2025-06-07T01:01:30.055809+00:00'
  2730. wasAssociatedWith:
  2731. - id: urn:uuid:873dd61c-63b4-4bb9-8005-697ca236073a
  2732. identifier: RRID:SCR_017571
  2733. name: DANDI API
  2734. schemaKey: Software
  2735. version: 0.1.0
  2736. schemaKey: Asset
  2737. schemaVersion: 0.6.10
  2738. variableMeasured: []
  2739. wasAttributedTo:
  2740. - age:
  2741. schemaKey: PropertyValue
  2742. unitText: ISO-8601 duration
  2743. value: P70D
  2744. valueReference:
  2745. schemaKey: PropertyValue
  2746. value: dandi:BirthReference
  2747. identifier: r-24-07-31
  2748. schemaKey: Participant
  2749. sex:
  2750. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  2751. name: Male
  2752. schemaKey: SexType
  2753. species:
  2754. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  2755. name: Rattus norvegicus - Norway rat
  2756. schemaKey: SpeciesType
  2757. wasGeneratedBy:
  2758. - description: particles_downstream_001, ECG, respiration
  2759. identifier: r-24-07-31_particles_downstream_001
  2760. name: r-24-07-31_particles_downstream_001
  2761. schemaKey: Session
  2762. startDate: '2024-07-31T15:21:34-05:00'
  2763. - description: Metadata generated by DANDI cli
  2764. endDate: '2025-06-06T18:59:47.126342-04:00'
  2765. id: urn:uuid:1058b5c7-4292-47e2-8fa8-266a07b4df1d
  2766. name: Metadata generation
  2767. schemaKey: Activity
  2768. startDate: '2025-06-06T18:59:47.116873-04:00'
  2769. wasAssociatedWith:
  2770. - identifier: RRID:SCR_019009
  2771. name: DANDI Command Line Interface
  2772. schemaKey: Software
  2773. url: https://github.com/dandi/dandi-cli
  2774. version: 0.69.3
  2775. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
  2776. access:
  2777. - schemaKey: AccessRequirements
  2778. status: dandi:OpenAccess
  2779. approach: []
  2780. blobDateModified: '2025-06-05T18:10:50.283183-04:00'
  2781. contentSize: 11387947890
  2782. contentUrl:
  2783. - https://api.dandiarchive.org/api/assets/dfc0b391-5eae-40fa-b737-3d311b8cd46f/download/
  2784. - https://dandiarchive.s3.amazonaws.com/blobs/965/de7/965de725-93ab-4f5e-9431-00af10838a32
  2785. dateModified: '2025-06-06T19:01:09.114175-04:00'
  2786. datePublished: '2025-06-07T01:01:30.065083+00:00'
  2787. digest:
  2788. dandi:dandi-etag: a4eb4edb9b11732086d138e6254e22a4-170
  2789. dandi:sha2-256: 5b6413be657f4b0ca783380f600f70682af3c86baa949080abde6e2d65448d2e
  2790. encodingFormat: application/x-nwb
  2791. id: dandiasset:dfc0b391-5eae-40fa-b737-3d311b8cd46f
  2792. identifier: dfc0b391-5eae-40fa-b737-3d311b8cd46f
  2793. keywords:
  2794. - Glymphatic, Perivascular space, Periarterial space, Cerebrospinal fluid.
  2795. measurementTechnique: []
  2796. path: sub-r-24-07-31/sub-r-24-07-31_ses-r-24-07-31-particles-downstream_image.nwb
  2797. publishedBy:
  2798. endDate: '2025-06-07T01:01:30.065083+00:00'
  2799. id: urn:uuid:b6b227b1-a404-4681-bcc2-a53286664159
  2800. name: DANDI publish
  2801. schemaKey: PublishActivity
  2802. startDate: '2025-06-07T01:01:30.065083+00:00'
  2803. wasAssociatedWith:
  2804. - id: urn:uuid:4767c336-9bcb-486e-b2d7-4661385db676
  2805. identifier: RRID:SCR_017571
  2806. name: DANDI API
  2807. schemaKey: Software
  2808. version: 0.1.0
  2809. schemaKey: Asset
  2810. schemaVersion: 0.6.10
  2811. variableMeasured: []
  2812. wasAttributedTo:
  2813. - age:
  2814. schemaKey: PropertyValue
  2815. unitText: ISO-8601 duration
  2816. value: P70D
  2817. valueReference:
  2818. schemaKey: PropertyValue
  2819. value: dandi:BirthReference
  2820. identifier: r-24-07-31
  2821. schemaKey: Participant
  2822. sex:
  2823. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  2824. name: Male
  2825. schemaKey: SexType
  2826. species:
  2827. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  2828. name: Rattus norvegicus - Norway rat
  2829. schemaKey: SpeciesType
  2830. wasGeneratedBy:
  2831. - description: particles_downstream, ECG, respiration
  2832. identifier: r-24-07-31_particles_downstream
  2833. name: r-24-07-31_particles_downstream
  2834. schemaKey: Session
  2835. startDate: '2024-07-31T15:08:32-05:00'
  2836. - description: Metadata generated by DANDI cli
  2837. endDate: '2025-06-06T19:01:09.114163-04:00'
  2838. id: urn:uuid:f3557c9f-2a5e-4997-9cfa-67dcbfc5a467
  2839. name: Metadata generation
  2840. schemaKey: Activity
  2841. startDate: '2025-06-06T19:01:09.104746-04:00'
  2842. wasAssociatedWith:
  2843. - identifier: RRID:SCR_019009
  2844. name: DANDI Command Line Interface
  2845. schemaKey: Software
  2846. url: https://github.com/dandi/dandi-cli
  2847. version: 0.69.3
  2848. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
  2849. access:
  2850. - schemaKey: AccessRequirements
  2851. status: dandi:OpenAccess
  2852. approach: []
  2853. blobDateModified: '2025-06-06T15:32:20.531765-04:00'
  2854. contentSize: 604202780
  2855. contentUrl:
  2856. - https://api.dandiarchive.org/api/assets/62eb869f-05d9-4154-bd0e-1c4ae3ba77fb/download/
  2857. - https://dandiarchive.s3.amazonaws.com/blobs/c8b/b9e/c8bb9efd-7997-4552-ac2c-6c8eea887f0a
  2858. dateModified: '2025-06-06T19:05:02.862407-04:00'
  2859. datePublished: '2025-06-07T01:01:30.073965+00:00'
  2860. digest:
  2861. dandi:dandi-etag: 21ca523f2c08b261c0b0d1656ef30292-10
  2862. dandi:sha2-256: 61828a382517e4951d632a36da54e5a1f394943130ef81e4bc8b4fd084c7bdf5
  2863. encodingFormat: application/x-nwb
  2864. id: dandiasset:62eb869f-05d9-4154-bd0e-1c4ae3ba77fb
  2865. identifier: 62eb869f-05d9-4154-bd0e-1c4ae3ba77fb
  2866. keywords:
  2867. - Glymphatic, Perivascular space, Periarterial space, Cerebrospinal fluid.
  2868. measurementTechnique: []
  2869. path: sub-r-24-07-31-rat2/sub-r-24-07-31-rat2_ses-r-24-07-31-rat2-zstack-downstream-bifu_image.nwb
  2870. publishedBy:
  2871. endDate: '2025-06-07T01:01:30.073965+00:00'
  2872. id: urn:uuid:4edbdc9a-5359-47c6-8959-fb81c685d7ef
  2873. name: DANDI publish
  2874. schemaKey: PublishActivity
  2875. startDate: '2025-06-07T01:01:30.073965+00:00'
  2876. wasAssociatedWith:
  2877. - id: urn:uuid:40ada14b-7712-4f86-83bf-8570ff13e820
  2878. identifier: RRID:SCR_017571
  2879. name: DANDI API
  2880. schemaKey: Software
  2881. version: 0.1.0
  2882. schemaKey: Asset
  2883. schemaVersion: 0.6.10
  2884. variableMeasured: []
  2885. wasAttributedTo:
  2886. - age:
  2887. schemaKey: PropertyValue
  2888. unitText: ISO-8601 duration
  2889. value: P70D
  2890. valueReference:
  2891. schemaKey: PropertyValue
  2892. value: dandi:BirthReference
  2893. identifier: r-24-07-31_rat2
  2894. schemaKey: Participant
  2895. sex:
  2896. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  2897. name: Male
  2898. schemaKey: SexType
  2899. species:
  2900. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  2901. name: Rattus norvegicus - Norway rat
  2902. schemaKey: SpeciesType
  2903. wasGeneratedBy:
  2904. - description: zstack-downstream-bifu
  2905. identifier: r-24-07-31_rat2_zstack-downstream-bifu
  2906. name: r-24-07-31_rat2_zstack-downstream-bifu
  2907. schemaKey: Session
  2908. startDate: '2024-07-31T20:18:12-05:00'
  2909. - description: Metadata generated by DANDI cli
  2910. endDate: '2025-06-06T19:05:02.862396-04:00'
  2911. id: urn:uuid:906a8f03-5daf-4cab-897d-802e7d3ef82f
  2912. name: Metadata generation
  2913. schemaKey: Activity
  2914. startDate: '2025-06-06T19:05:02.853110-04:00'
  2915. wasAssociatedWith:
  2916. - identifier: RRID:SCR_019009
  2917. name: DANDI Command Line Interface
  2918. schemaKey: Software
  2919. url: https://github.com/dandi/dandi-cli
  2920. version: 0.69.3
  2921. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
  2922. access:
  2923. - schemaKey: AccessRequirements
  2924. status: dandi:OpenAccess
  2925. approach: []
  2926. blobDateModified: '2025-06-06T15:33:04.133808-04:00'
  2927. contentSize: 624016945
  2928. contentUrl:
  2929. - https://api.dandiarchive.org/api/assets/9ca456ce-8135-49e1-95ae-4a482a145b73/download/
  2930. - https://dandiarchive.s3.amazonaws.com/blobs/81d/fe9/81dfe93c-89c7-4f14-a342-96c0c011a765
  2931. dateModified: '2025-06-06T19:05:37.821152-04:00'
  2932. datePublished: '2025-06-07T01:01:30.084389+00:00'
  2933. digest:
  2934. dandi:dandi-etag: 30375000fec82bbc0e9b119166b02df2-10
  2935. dandi:sha2-256: e309213e9e76145043972fc52695cbb7467e95d53b769e63b2d899dd9d8e458a
  2936. encodingFormat: application/x-nwb
  2937. id: dandiasset:9ca456ce-8135-49e1-95ae-4a482a145b73
  2938. identifier: 9ca456ce-8135-49e1-95ae-4a482a145b73
  2939. keywords:
  2940. - Glymphatic, Perivascular space, Periarterial space, Cerebrospinal fluid.
  2941. measurementTechnique: []
  2942. path: sub-r-24-07-31-rat2/sub-r-24-07-31-rat2_ses-r-24-07-31-rat2-zstack-upstream_image.nwb
  2943. publishedBy:
  2944. endDate: '2025-06-07T01:01:30.084389+00:00'
  2945. id: urn:uuid:5431b178-b6c6-4ebe-8964-e5aadcbb325b
  2946. name: DANDI publish
  2947. schemaKey: PublishActivity
  2948. startDate: '2025-06-07T01:01:30.084389+00:00'
  2949. wasAssociatedWith:
  2950. - id: urn:uuid:18885c0b-49a1-4769-a58a-063754f214aa
  2951. identifier: RRID:SCR_017571
  2952. name: DANDI API
  2953. schemaKey: Software
  2954. version: 0.1.0
  2955. schemaKey: Asset
  2956. schemaVersion: 0.6.10
  2957. variableMeasured: []
  2958. wasAttributedTo:
  2959. - age:
  2960. schemaKey: PropertyValue
  2961. unitText: ISO-8601 duration
  2962. value: P70D
  2963. valueReference:
  2964. schemaKey: PropertyValue
  2965. value: dandi:BirthReference
  2966. identifier: r-24-07-31_rat2
  2967. schemaKey: Participant
  2968. sex:
  2969. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  2970. name: Male
  2971. schemaKey: SexType
  2972. species:
  2973. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  2974. name: Rattus norvegicus - Norway rat
  2975. schemaKey: SpeciesType
  2976. wasGeneratedBy:
  2977. - description: zstack-upstream
  2978. identifier: r-24-07-31_rat2_zstack-upstream
  2979. name: r-24-07-31_rat2_zstack-upstream
  2980. schemaKey: Session
  2981. startDate: '2024-07-31T20:16:17-05:00'
  2982. - description: Metadata generated by DANDI cli
  2983. endDate: '2025-06-06T19:05:37.821140-04:00'
  2984. id: urn:uuid:05fd3589-da38-4ac5-87ca-e288e40adb48
  2985. name: Metadata generation
  2986. schemaKey: Activity
  2987. startDate: '2025-06-06T19:05:37.811615-04:00'
  2988. wasAssociatedWith:
  2989. - identifier: RRID:SCR_019009
  2990. name: DANDI Command Line Interface
  2991. schemaKey: Software
  2992. url: https://github.com/dandi/dandi-cli
  2993. version: 0.69.3
  2994. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
  2995. access:
  2996. - schemaKey: AccessRequirements
  2997. status: dandi:OpenAccess
  2998. approach: []
  2999. blobDateModified: '2025-06-05T18:48:48.981776-04:00'
  3000. contentSize: 6265964331
  3001. contentUrl:
  3002. - https://api.dandiarchive.org/api/assets/5d4dc587-084f-44fa-9864-1ec24716399f/download/
  3003. - https://dandiarchive.s3.amazonaws.com/blobs/242/a9d/242a9dcf-b23c-47b2-8e5d-585ad7b9cfbf
  3004. dateModified: '2025-06-06T19:07:42.248774-04:00'
  3005. datePublished: '2025-06-07T01:01:30.092150+00:00'
  3006. digest:
  3007. dandi:dandi-etag: d3b567561c773abd5f959e670358cebd-94
  3008. dandi:sha2-256: e753cea2a2e9b9110347d26c55b70e263adccb9d719c5664071bd069ecee739b
  3009. encodingFormat: application/x-nwb
  3010. id: dandiasset:5d4dc587-084f-44fa-9864-1ec24716399f
  3011. identifier: 5d4dc587-084f-44fa-9864-1ec24716399f
  3012. keywords:
  3013. - Glymphatic, Perivascular space, Periarterial space, Cerebrospinal fluid.
  3014. measurementTechnique: []
  3015. path: sub-r-24-07-31-rat2/sub-r-24-07-31-rat2_ses-r-24-07-31-rat2-particles-downstream_image.nwb
  3016. publishedBy:
  3017. endDate: '2025-06-07T01:01:30.092150+00:00'
  3018. id: urn:uuid:3e88b578-f252-4a1b-8f73-2ac8e9d80262
  3019. name: DANDI publish
  3020. schemaKey: PublishActivity
  3021. startDate: '2025-06-07T01:01:30.092150+00:00'
  3022. wasAssociatedWith:
  3023. - id: urn:uuid:6c199b97-95bd-45c1-bccb-41d93ffcf218
  3024. identifier: RRID:SCR_017571
  3025. name: DANDI API
  3026. schemaKey: Software
  3027. version: 0.1.0
  3028. schemaKey: Asset
  3029. schemaVersion: 0.6.10
  3030. variableMeasured: []
  3031. wasAttributedTo:
  3032. - age:
  3033. schemaKey: PropertyValue
  3034. unitText: ISO-8601 duration
  3035. value: P70D
  3036. valueReference:
  3037. schemaKey: PropertyValue
  3038. value: dandi:BirthReference
  3039. identifier: r-24-07-31_rat2
  3040. schemaKey: Participant
  3041. sex:
  3042. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  3043. name: Male
  3044. schemaKey: SexType
  3045. species:
  3046. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  3047. name: Rattus norvegicus - Norway rat
  3048. schemaKey: SpeciesType
  3049. wasGeneratedBy:
  3050. - description: particles-downstream, ECG, respiration
  3051. identifier: r-24-07-31_rat2_particles-downstream
  3052. name: r-24-07-31_rat2_particles-downstream
  3053. schemaKey: Session
  3054. startDate: '2024-07-31T20:09:03-05:00'
  3055. - description: Metadata generated by DANDI cli
  3056. endDate: '2025-06-06T19:07:42.248755-04:00'
  3057. id: urn:uuid:618cfc19-7a73-457d-9a68-3083a5ccb306
  3058. name: Metadata generation
  3059. schemaKey: Activity
  3060. startDate: '2025-06-06T19:07:42.225851-04:00'
  3061. wasAssociatedWith:
  3062. - identifier: RRID:SCR_019009
  3063. name: DANDI Command Line Interface
  3064. schemaKey: Software
  3065. url: https://github.com/dandi/dandi-cli
  3066. version: 0.69.3
  3067. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
  3068. access:
  3069. - schemaKey: AccessRequirements
  3070. status: dandi:OpenAccess
  3071. approach: []
  3072. blobDateModified: '2025-06-05T18:39:11.899682-04:00'
  3073. contentSize: 11141827352
  3074. contentUrl:
  3075. - https://api.dandiarchive.org/api/assets/34b7d4f7-f92d-4941-97ee-7f109ba56af4/download/
  3076. - https://dandiarchive.s3.amazonaws.com/blobs/189/eae/189eae47-b53a-48eb-8c09-294e891ea0e7
  3077. dateModified: '2025-06-06T19:07:13.792506-04:00'
  3078. datePublished: '2025-06-07T01:01:30.099818+00:00'
  3079. digest:
  3080. dandi:dandi-etag: 9de7c35028602ed470ef03546fbe53d5-167
  3081. dandi:sha2-256: 8f2ca572ba73431fd223dfc41d1f62568bf85c5a76db1e9f0bbc3cd09437931e
  3082. encodingFormat: application/x-nwb
  3083. id: dandiasset:34b7d4f7-f92d-4941-97ee-7f109ba56af4
  3084. identifier: 34b7d4f7-f92d-4941-97ee-7f109ba56af4
  3085. keywords:
  3086. - Glymphatic, Perivascular space, Periarterial space, Cerebrospinal fluid.
  3087. measurementTechnique: []
  3088. path: sub-r-24-07-31/sub-r-24-07-31_ses-r-24-07-31-particles-upstream-001_image.nwb
  3089. publishedBy:
  3090. endDate: '2025-06-07T01:01:30.099818+00:00'
  3091. id: urn:uuid:3dd5ab46-cf40-457f-9282-e55c887bcc4a
  3092. name: DANDI publish
  3093. schemaKey: PublishActivity
  3094. startDate: '2025-06-07T01:01:30.099818+00:00'
  3095. wasAssociatedWith:
  3096. - id: urn:uuid:04aa692a-c35b-4ee2-9038-7ac7fe791817
  3097. identifier: RRID:SCR_017571
  3098. name: DANDI API
  3099. schemaKey: Software
  3100. version: 0.1.0
  3101. schemaKey: Asset
  3102. schemaVersion: 0.6.10
  3103. variableMeasured: []
  3104. wasAttributedTo:
  3105. - age:
  3106. schemaKey: PropertyValue
  3107. unitText: ISO-8601 duration
  3108. value: P70D
  3109. valueReference:
  3110. schemaKey: PropertyValue
  3111. value: dandi:BirthReference
  3112. identifier: r-24-07-31
  3113. schemaKey: Participant
  3114. sex:
  3115. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  3116. name: Male
  3117. schemaKey: SexType
  3118. species:
  3119. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  3120. name: Rattus norvegicus - Norway rat
  3121. schemaKey: SpeciesType
  3122. wasGeneratedBy:
  3123. - description: particles_upstream_001, ECG, respiration
  3124. identifier: r-24-07-31_particles_upstream_001
  3125. name: r-24-07-31_particles_upstream_001
  3126. schemaKey: Session
  3127. startDate: '2024-07-31T15:14:59-05:00'
  3128. - description: Metadata generated by DANDI cli
  3129. endDate: '2025-06-06T19:07:13.792491-04:00'
  3130. id: urn:uuid:f5791923-e58f-4b12-b668-aade70eee4dc
  3131. name: Metadata generation
  3132. schemaKey: Activity
  3133. startDate: '2025-06-06T19:07:13.782836-04:00'
  3134. wasAssociatedWith:
  3135. - identifier: RRID:SCR_019009
  3136. name: DANDI Command Line Interface
  3137. schemaKey: Software
  3138. url: https://github.com/dandi/dandi-cli
  3139. version: 0.69.3
  3140. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
  3141. access:
  3142. - schemaKey: AccessRequirements
  3143. status: dandi:OpenAccess
  3144. approach: []
  3145. blobDateModified: '2025-06-05T19:17:59.219418-04:00'
  3146. contentSize: 11724191342
  3147. contentUrl:
  3148. - https://api.dandiarchive.org/api/assets/fd8703f5-a2a0-4990-a908-26c8820c9ddc/download/
  3149. - https://dandiarchive.s3.amazonaws.com/blobs/645/150/645150e3-07a7-4f5e-8f81-eec1f0d5d138
  3150. dateModified: '2025-06-06T19:07:45.303357-04:00'
  3151. datePublished: '2025-06-07T01:01:30.106903+00:00'
  3152. digest:
  3153. dandi:dandi-etag: 38232b00842e44d3e78b2ed9cd499e83-175
  3154. dandi:sha2-256: 4b0b8e75fd9fdb5b69c10cbc2f1c5809ec329696fe2dc58e19b8901249bd2dee
  3155. encodingFormat: application/x-nwb
  3156. id: dandiasset:fd8703f5-a2a0-4990-a908-26c8820c9ddc
  3157. identifier: fd8703f5-a2a0-4990-a908-26c8820c9ddc
  3158. keywords:
  3159. - Glymphatic, Perivascular space, Periarterial space, Cerebrospinal fluid.
  3160. measurementTechnique: []
  3161. path: sub-r-24-07-31-rat2/sub-r-24-07-31-rat2_ses-r-24-07-31-rat2-particles-downstream-bifu_image.nwb
  3162. publishedBy:
  3163. endDate: '2025-06-07T01:01:30.106903+00:00'
  3164. id: urn:uuid:a078ff0c-eb6d-4037-889d-1b51eb657b5d
  3165. name: DANDI publish
  3166. schemaKey: PublishActivity
  3167. startDate: '2025-06-07T01:01:30.106903+00:00'
  3168. wasAssociatedWith:
  3169. - id: urn:uuid:0c17a2bd-6dd0-4e4e-be44-7be9eae72d2d
  3170. identifier: RRID:SCR_017571
  3171. name: DANDI API
  3172. schemaKey: Software
  3173. version: 0.1.0
  3174. schemaKey: Asset
  3175. schemaVersion: 0.6.10
  3176. variableMeasured: []
  3177. wasAttributedTo:
  3178. - age:
  3179. schemaKey: PropertyValue
  3180. unitText: ISO-8601 duration
  3181. value: P70D
  3182. valueReference:
  3183. schemaKey: PropertyValue
  3184. value: dandi:BirthReference
  3185. identifier: r-24-07-31_rat2
  3186. schemaKey: Participant
  3187. sex:
  3188. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  3189. name: Male
  3190. schemaKey: SexType
  3191. species:
  3192. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  3193. name: Rattus norvegicus - Norway rat
  3194. schemaKey: SpeciesType
  3195. wasGeneratedBy:
  3196. - description: particles-downstream-bifu, ECG, respiration
  3197. identifier: r-24-07-31_rat2_particles-downstream-bifu
  3198. name: r-24-07-31_rat2_particles-downstream-bifu
  3199. schemaKey: Session
  3200. startDate: '2024-07-31T20:20:57-05:00'
  3201. - description: Metadata generated by DANDI cli
  3202. endDate: '2025-06-06T19:07:45.303346-04:00'
  3203. id: urn:uuid:89111e90-a518-4701-ab14-6b69bade86d4
  3204. name: Metadata generation
  3205. schemaKey: Activity
  3206. startDate: '2025-06-06T19:07:45.294064-04:00'
  3207. wasAssociatedWith:
  3208. - identifier: RRID:SCR_019009
  3209. name: DANDI Command Line Interface
  3210. schemaKey: Software
  3211. url: https://github.com/dandi/dandi-cli
  3212. version: 0.69.3
  3213. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
  3214. access:
  3215. - schemaKey: AccessRequirements
  3216. status: dandi:OpenAccess
  3217. approach: []
  3218. blobDateModified: '2025-06-05T19:03:42.888538-04:00'
  3219. contentSize: 11603888473
  3220. contentUrl:
  3221. - https://api.dandiarchive.org/api/assets/afe85731-0032-4343-95a4-903080477b1d/download/
  3222. - https://dandiarchive.s3.amazonaws.com/blobs/e46/057/e4605764-04ff-4e8c-b2ca-5e1f949c90f1
  3223. dateModified: '2025-06-06T19:07:25.738278-04:00'
  3224. datePublished: '2025-06-07T01:01:30.113762+00:00'
  3225. digest:
  3226. dandi:dandi-etag: a6452a4b8722ef2c736e4cd007128de3-173
  3227. dandi:sha2-256: d7d9d65383b7d0eab93259dc67474bc351b8d4cd71a86bf9fd27444d2153052b
  3228. encodingFormat: application/x-nwb
  3229. id: dandiasset:afe85731-0032-4343-95a4-903080477b1d
  3230. identifier: afe85731-0032-4343-95a4-903080477b1d
  3231. keywords:
  3232. - Glymphatic, Perivascular space, Periarterial space, Cerebrospinal fluid.
  3233. measurementTechnique: []
  3234. path: sub-r-24-07-31-rat2/sub-r-24-07-31-rat2_ses-r-24-07-31-rat2-particles-downstream-001_image.nwb
  3235. publishedBy:
  3236. endDate: '2025-06-07T01:01:30.113762+00:00'
  3237. id: urn:uuid:d1dcbc82-71ee-4a17-9999-bc5d118bd628
  3238. name: DANDI publish
  3239. schemaKey: PublishActivity
  3240. startDate: '2025-06-07T01:01:30.113762+00:00'
  3241. wasAssociatedWith:
  3242. - id: urn:uuid:37cdb254-052a-4650-abc8-f00fff3683eb
  3243. identifier: RRID:SCR_017571
  3244. name: DANDI API
  3245. schemaKey: Software
  3246. version: 0.1.0
  3247. schemaKey: Asset
  3248. schemaVersion: 0.6.10
  3249. variableMeasured: []
  3250. wasAttributedTo:
  3251. - age:
  3252. schemaKey: PropertyValue
  3253. unitText: ISO-8601 duration
  3254. value: P70D
  3255. valueReference:
  3256. schemaKey: PropertyValue
  3257. value: dandi:BirthReference
  3258. identifier: r-24-07-31_rat2
  3259. schemaKey: Participant
  3260. sex:
  3261. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  3262. name: Male
  3263. schemaKey: SexType
  3264. species:
  3265. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  3266. name: Rattus norvegicus - Norway rat
  3267. schemaKey: SpeciesType
  3268. wasGeneratedBy:
  3269. - description: particles-downstream_001, ECG, respiration
  3270. identifier: r-24-07-31_rat2_particles-downstream_001
  3271. name: r-24-07-31_rat2_particles-downstream_001
  3272. schemaKey: Session
  3273. startDate: '2024-07-31T20:28:01-05:00'
  3274. - description: Metadata generated by DANDI cli
  3275. endDate: '2025-06-06T19:07:25.738266-04:00'
  3276. id: urn:uuid:42c15f4a-ffc3-4c83-801e-0db8cfd98631
  3277. name: Metadata generation
  3278. schemaKey: Activity
  3279. startDate: '2025-06-06T19:07:25.737059-04:00'
  3280. wasAssociatedWith:
  3281. - identifier: RRID:SCR_019009
  3282. name: DANDI Command Line Interface
  3283. schemaKey: Software
  3284. url: https://github.com/dandi/dandi-cli
  3285. version: 0.69.3
  3286. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
  3287. access:
  3288. - schemaKey: AccessRequirements
  3289. status: dandi:OpenAccess
  3290. approach: []
  3291. blobDateModified: '2025-06-06T20:20:17.230218-04:00'
  3292. contentSize: 7979994617
  3293. contentUrl:
  3294. - https://api.dandiarchive.org/api/assets/98acda5b-fa47-44f4-b4fc-3a07ea7e064e/download/
  3295. - https://dandiarchive.s3.amazonaws.com/blobs/ecb/2ed/ecb2edd8-8b40-4452-ba44-0c1ad1aaf2d2
  3296. dateModified: '2025-06-06T20:46:42.035681-04:00'
  3297. datePublished: '2025-06-07T01:01:30.120176+00:00'
  3298. digest:
  3299. dandi:dandi-etag: 59e934390bb0b64772fd6362e5032d8d-119
  3300. dandi:sha2-256: 5ddbc036cf06af9ef255b9af7190663a9014ebd2a8d4b8005c97467653c48253
  3301. encodingFormat: application/x-nwb
  3302. id: dandiasset:98acda5b-fa47-44f4-b4fc-3a07ea7e064e
  3303. identifier: 98acda5b-fa47-44f4-b4fc-3a07ea7e064e
  3304. keywords:
  3305. - Glymphatic, Perivascular space, Periarterial space, Cerebrospinal fluid.
  3306. measurementTechnique: []
  3307. path: sub-m-20210527-PTV-BPN/sub-m-20210527-PTV-BPN_ses-m-20210527-PTV-BPN-1-Normal-Pressure-particles-up_image.nwb
  3308. publishedBy:
  3309. endDate: '2025-06-07T01:01:30.120176+00:00'
  3310. id: urn:uuid:1d139d42-2a63-41ee-97b7-a4602837a203
  3311. name: DANDI publish
  3312. schemaKey: PublishActivity
  3313. startDate: '2025-06-07T01:01:30.120176+00:00'
  3314. wasAssociatedWith:
  3315. - id: urn:uuid:61390930-1252-42bd-a468-35eda38bc586
  3316. identifier: RRID:SCR_017571
  3317. name: DANDI API
  3318. schemaKey: Software
  3319. version: 0.1.0
  3320. schemaKey: Asset
  3321. schemaVersion: 0.6.10
  3322. variableMeasured: []
  3323. wasAttributedTo:
  3324. - age:
  3325. schemaKey: PropertyValue
  3326. unitText: ISO-8601 duration
  3327. value: P281D
  3328. valueReference:
  3329. schemaKey: PropertyValue
  3330. value: dandi:BirthReference
  3331. identifier: m-20210527_PTV_BPN
  3332. schemaKey: Participant
  3333. sex:
  3334. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  3335. name: Male
  3336. schemaKey: SexType
  3337. species:
  3338. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  3339. name: Mus musculus - House mouse
  3340. schemaKey: SpeciesType
  3341. wasGeneratedBy:
  3342. - description: particles-up, ECG, respiration
  3343. identifier: m-20210527_PTV_BPN_1-Normal_Pressure_particles-up
  3344. name: m-20210527_PTV_BPN_1-Normal_Pressure_particles-up
  3345. schemaKey: Session
  3346. startDate: '2021-05-27T11:40:08-05:00'
  3347. - description: Metadata generated by DANDI cli
  3348. endDate: '2025-06-06T20:46:42.035666-04:00'
  3349. id: urn:uuid:99b4991f-b5d1-4927-b882-3d50ecb7f8e6
  3350. name: Metadata generation
  3351. schemaKey: Activity
  3352. startDate: '2025-06-06T20:46:42.033782-04:00'
  3353. wasAssociatedWith:
  3354. - identifier: RRID:SCR_019009
  3355. name: DANDI Command Line Interface
  3356. schemaKey: Software
  3357. url: https://github.com/dandi/dandi-cli
  3358. version: 0.69.3
  3359. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
  3360. access:
  3361. - schemaKey: AccessRequirements
  3362. status: dandi:OpenAccess
  3363. approach: []
  3364. blobDateModified: '2025-06-06T20:40:41.257754-04:00'
  3365. contentSize: 10175355509
  3366. contentUrl:
  3367. - https://api.dandiarchive.org/api/assets/11dfe0bf-2f6b-41a0-9572-e11d552ee4dd/download/
  3368. - https://dandiarchive.s3.amazonaws.com/blobs/68e/63d/68e63da5-b8f4-4172-8679-84294164dbbf
  3369. dateModified: '2025-06-06T20:46:46.572164-04:00'
  3370. datePublished: '2025-06-07T01:01:30.126554+00:00'
  3371. digest:
  3372. dandi:dandi-etag: da81d13e3e16d0e8a833ec392391768f-152
  3373. dandi:sha2-256: 7f0fe66e3cd26f32f1055e3301c33587e597a59d1104d35a9461e3c4f0037c7f
  3374. encodingFormat: application/x-nwb
  3375. id: dandiasset:11dfe0bf-2f6b-41a0-9572-e11d552ee4dd
  3376. identifier: 11dfe0bf-2f6b-41a0-9572-e11d552ee4dd
  3377. keywords:
  3378. - Glymphatic, Perivascular space, Periarterial space, Cerebrospinal fluid.
  3379. measurementTechnique: []
  3380. path: sub-m-20210526-PTV-BPN-BPH/sub-m-20210526-PTV-BPN-BPH_ses-m-20210526-PTV-BPN-BPH-particles-up-001_image.nwb
  3381. publishedBy:
  3382. endDate: '2025-06-07T01:01:30.126554+00:00'
  3383. id: urn:uuid:5d3e690b-73e2-46e2-ae4c-149aef1b3b61
  3384. name: DANDI publish
  3385. schemaKey: PublishActivity
  3386. startDate: '2025-06-07T01:01:30.126554+00:00'
  3387. wasAssociatedWith:
  3388. - id: urn:uuid:82ba4517-c738-42cd-bd7d-af004fb55528
  3389. identifier: RRID:SCR_017571
  3390. name: DANDI API
  3391. schemaKey: Software
  3392. version: 0.1.0
  3393. schemaKey: Asset
  3394. schemaVersion: 0.6.10
  3395. variableMeasured: []
  3396. wasAttributedTo:
  3397. - age:
  3398. schemaKey: PropertyValue
  3399. unitText: ISO-8601 duration
  3400. value: P292D
  3401. valueReference:
  3402. schemaKey: PropertyValue
  3403. value: dandi:BirthReference
  3404. identifier: m-20210526_PTV_BPN-BPH
  3405. schemaKey: Participant
  3406. sex:
  3407. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  3408. name: Female
  3409. schemaKey: SexType
  3410. species:
  3411. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  3412. name: Mus musculus - House mouse
  3413. schemaKey: SpeciesType
  3414. wasGeneratedBy:
  3415. - description: particles-up_001, ECG, respiration
  3416. identifier: m-20210526_PTV_BPN-BPH_particles-up_001
  3417. name: m-20210526_PTV_BPN-BPH_particles-up_001
  3418. schemaKey: Session
  3419. startDate: '2021-05-26T11:41:13-05:00'
  3420. - description: Metadata generated by DANDI cli
  3421. endDate: '2025-06-06T20:46:46.572154-04:00'
  3422. id: urn:uuid:a23c5dd7-6a89-45e0-9992-5c8fc9d16bc8
  3423. name: Metadata generation
  3424. schemaKey: Activity
  3425. startDate: '2025-06-06T20:46:46.571328-04:00'
  3426. wasAssociatedWith:
  3427. - identifier: RRID:SCR_019009
  3428. name: DANDI Command Line Interface
  3429. schemaKey: Software
  3430. url: https://github.com/dandi/dandi-cli
  3431. version: 0.69.3
  3432. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
  3433. access:
  3434. - schemaKey: AccessRequirements
  3435. status: dandi:OpenAccess
  3436. approach: []
  3437. blobDateModified: '2025-06-06T20:11:18.242692-04:00'
  3438. contentSize: 10878065450
  3439. contentUrl:
  3440. - https://api.dandiarchive.org/api/assets/e40105a3-d03d-4d62-a81f-c5ff31c6d7ad/download/
  3441. - https://dandiarchive.s3.amazonaws.com/blobs/999/ca9/999ca9ab-a5f6-4362-8610-a5edc1babdc9
  3442. dateModified: '2025-06-06T20:46:47.992215-04:00'
  3443. datePublished: '2025-06-07T01:01:30.133220+00:00'
  3444. digest:
  3445. dandi:dandi-etag: 4b4b07cbab1548f768c2ac90eeda6acb-163
  3446. dandi:sha2-256: 02f1d2050be1c9c3d2952d469550bc9fdd12ebf7771a6e76375688852c52acf3
  3447. encodingFormat: application/x-nwb
  3448. id: dandiasset:e40105a3-d03d-4d62-a81f-c5ff31c6d7ad
  3449. identifier: e40105a3-d03d-4d62-a81f-c5ff31c6d7ad
  3450. keywords:
  3451. - Glymphatic, Perivascular space, Periarterial space, Cerebrospinal fluid.
  3452. measurementTechnique: []
  3453. path: sub-m-20210525-PTV-BPN-BPH/sub-m-20210525-PTV-BPN-BPH_ses-m-20210525-PTV-BPN-BPH-Normal-Pressure-particles-up_image.nwb
  3454. publishedBy:
  3455. endDate: '2025-06-07T01:01:30.133220+00:00'
  3456. id: urn:uuid:9feb1746-36cd-4fb8-a16b-e66681bdac4d
  3457. name: DANDI publish
  3458. schemaKey: PublishActivity
  3459. startDate: '2025-06-07T01:01:30.133220+00:00'
  3460. wasAssociatedWith:
  3461. - id: urn:uuid:0e6814c9-01f0-4f6b-a73c-b3fea037a0e0
  3462. identifier: RRID:SCR_017571
  3463. name: DANDI API
  3464. schemaKey: Software
  3465. version: 0.1.0
  3466. schemaKey: Asset
  3467. schemaVersion: 0.6.10
  3468. variableMeasured: []
  3469. wasAttributedTo:
  3470. - age:
  3471. schemaKey: PropertyValue
  3472. unitText: ISO-8601 duration
  3473. value: P291D
  3474. valueReference:
  3475. schemaKey: PropertyValue
  3476. value: dandi:BirthReference
  3477. identifier: m-20210525_PTV_BPN-BPH
  3478. schemaKey: Participant
  3479. sex:
  3480. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  3481. name: Female
  3482. schemaKey: SexType
  3483. species:
  3484. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  3485. name: Mus musculus - House mouse
  3486. schemaKey: SpeciesType
  3487. wasGeneratedBy:
  3488. - description: particles-up, ECG, respiration
  3489. identifier: m-20210525_PTV_BPN-BPH_Normal_Pressure_particles-up
  3490. name: m-20210525_PTV_BPN-BPH_Normal_Pressure_particles-up
  3491. schemaKey: Session
  3492. startDate: '2021-05-25T14:36:07-05:00'
  3493. - description: Metadata generated by DANDI cli
  3494. endDate: '2025-06-06T20:46:47.992204-04:00'
  3495. id: urn:uuid:10528f2e-1968-4872-98b9-f629d1a56b44
  3496. name: Metadata generation
  3497. schemaKey: Activity
  3498. startDate: '2025-06-06T20:46:47.991227-04:00'
  3499. wasAssociatedWith:
  3500. - identifier: RRID:SCR_019009
  3501. name: DANDI Command Line Interface
  3502. schemaKey: Software
  3503. url: https://github.com/dandi/dandi-cli
  3504. version: 0.69.3
  3505. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
  3506. access:
  3507. - schemaKey: AccessRequirements
  3508. status: dandi:OpenAccess
  3509. approach: []
  3510. blobDateModified: '2025-06-06T19:55:28.815950-04:00'
  3511. contentSize: 11907181611
  3512. contentUrl:
  3513. - https://api.dandiarchive.org/api/assets/d7898dd9-dc8b-40b9-a425-2ed7763e1c36/download/
  3514. - https://dandiarchive.s3.amazonaws.com/blobs/59f/1a9/59f1a97e-c939-4015-9c61-96d3260b0ed5
  3515. dateModified: '2025-06-06T20:46:49.684570-04:00'
  3516. datePublished: '2025-06-07T01:01:30.140856+00:00'
  3517. digest:
  3518. dandi:dandi-etag: 2f1b4094db482471c9f16773641fad99-178
  3519. dandi:sha2-256: 48535335ba28200814aed2ad2c612d47aa8b6b662b4f50ad58c1f39a46d45982
  3520. encodingFormat: application/x-nwb
  3521. id: dandiasset:d7898dd9-dc8b-40b9-a425-2ed7763e1c36
  3522. identifier: d7898dd9-dc8b-40b9-a425-2ed7763e1c36
  3523. keywords:
  3524. - Glymphatic, Perivascular space, Periarterial space, Cerebrospinal fluid.
  3525. measurementTechnique: []
  3526. path: sub-m-20210524-PTV-BPN-BPH/sub-m-20210524-PTV-BPN-BPH_ses-m-20210524-PTV-BPN-BPH-1-Normal-Pressure-particles-down_image.nwb
  3527. publishedBy:
  3528. endDate: '2025-06-07T01:01:30.140856+00:00'
  3529. id: urn:uuid:273017d7-2622-4db4-826f-0bc1c1b8b3d0
  3530. name: DANDI publish
  3531. schemaKey: PublishActivity
  3532. startDate: '2025-06-07T01:01:30.140856+00:00'
  3533. wasAssociatedWith:
  3534. - id: urn:uuid:682013d0-5954-421c-9463-0caa2c3fa66f
  3535. identifier: RRID:SCR_017571
  3536. name: DANDI API
  3537. schemaKey: Software
  3538. version: 0.1.0
  3539. schemaKey: Asset
  3540. schemaVersion: 0.6.10
  3541. variableMeasured: []
  3542. wasAttributedTo:
  3543. - age:
  3544. schemaKey: PropertyValue
  3545. unitText: ISO-8601 duration
  3546. value: P290D
  3547. valueReference:
  3548. schemaKey: PropertyValue
  3549. value: dandi:BirthReference
  3550. identifier: m-20210524_PTV_BPN-BPH
  3551. schemaKey: Participant
  3552. sex:
  3553. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  3554. name: Female
  3555. schemaKey: SexType
  3556. species:
  3557. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  3558. name: Mus musculus - House mouse
  3559. schemaKey: SpeciesType
  3560. wasGeneratedBy:
  3561. - description: particles-down, ECG, respiration
  3562. identifier: m-20210524_PTV_BPN-BPH_1-Normal_Pressure_particles-down
  3563. name: m-20210524_PTV_BPN-BPH_1-Normal_Pressure_particles-down
  3564. schemaKey: Session
  3565. startDate: '2021-05-24T14:57:11-05:00'
  3566. - description: Metadata generated by DANDI cli
  3567. endDate: '2025-06-06T20:46:49.684560-04:00'
  3568. id: urn:uuid:2b5b40ce-bd67-4239-a6de-a5848dce30cf
  3569. name: Metadata generation
  3570. schemaKey: Activity
  3571. startDate: '2025-06-06T20:46:49.683753-04:00'
  3572. wasAssociatedWith:
  3573. - identifier: RRID:SCR_019009
  3574. name: DANDI Command Line Interface
  3575. schemaKey: Software
  3576. url: https://github.com/dandi/dandi-cli
  3577. version: 0.69.3
  3578. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
  3579. access:
  3580. - schemaKey: AccessRequirements
  3581. status: dandi:OpenAccess
  3582. approach: []
  3583. blobDateModified: '2025-06-06T19:39:47.300439-04:00'
  3584. contentSize: 13221774430
  3585. contentUrl:
  3586. - https://api.dandiarchive.org/api/assets/d0b49575-0e56-4487-bf42-8e48bf589477/download/
  3587. - https://dandiarchive.s3.amazonaws.com/blobs/559/dd5/559dd5f2-5852-4b5a-b300-8e1320f536e6
  3588. dateModified: '2025-06-06T20:46:52.236416-04:00'
  3589. datePublished: '2025-06-07T01:01:30.147500+00:00'
  3590. digest:
  3591. dandi:dandi-etag: d561b88c18b617e30f37f69c1446502a-198
  3592. dandi:sha2-256: ddee1f21b181a1ae7284ac3df6469c5e10655babe638575bf7d775df1a5aa71f
  3593. encodingFormat: application/x-nwb
  3594. id: dandiasset:d0b49575-0e56-4487-bf42-8e48bf589477
  3595. identifier: d0b49575-0e56-4487-bf42-8e48bf589477
  3596. keywords:
  3597. - Glymphatic, Perivascular space, Periarterial space, Cerebrospinal fluid.
  3598. measurementTechnique: []
  3599. path: sub-m-20210315-PTV-BPN-BPH/sub-m-20210315-PTV-BPN-BPH_ses-m-20210315-PTV-BPN-BPH-M1-particles_image.nwb
  3600. publishedBy:
  3601. endDate: '2025-06-07T01:01:30.147500+00:00'
  3602. id: urn:uuid:77b80347-e56c-4b69-924f-21a1e39f78c1
  3603. name: DANDI publish
  3604. schemaKey: PublishActivity
  3605. startDate: '2025-06-07T01:01:30.147500+00:00'
  3606. wasAssociatedWith:
  3607. - id: urn:uuid:dc1965fe-a3aa-4b1b-838f-55528e3929c0
  3608. identifier: RRID:SCR_017571
  3609. name: DANDI API
  3610. schemaKey: Software
  3611. version: 0.1.0
  3612. schemaKey: Asset
  3613. schemaVersion: 0.6.10
  3614. variableMeasured: []
  3615. wasAttributedTo:
  3616. - age:
  3617. schemaKey: PropertyValue
  3618. unitText: ISO-8601 duration
  3619. value: P196D
  3620. valueReference:
  3621. schemaKey: PropertyValue
  3622. value: dandi:BirthReference
  3623. identifier: m-20210315_PTV_BPN-BPH
  3624. schemaKey: Participant
  3625. sex:
  3626. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  3627. name: Male
  3628. schemaKey: SexType
  3629. species:
  3630. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  3631. name: Mus musculus - House mouse
  3632. schemaKey: SpeciesType
  3633. wasGeneratedBy:
  3634. - description: particles, ECG, respiration
  3635. identifier: m-20210315_PTV_BPN-BPH_M1_particles
  3636. name: m-20210315_PTV_BPN-BPH_M1_particles
  3637. schemaKey: Session
  3638. startDate: '2021-02-17T10:50:11-05:00'
  3639. - description: Metadata generated by DANDI cli
  3640. endDate: '2025-06-06T20:46:52.236407-04:00'
  3641. id: urn:uuid:350605f6-a776-41eb-af7c-56c5d3bb9dd4
  3642. name: Metadata generation
  3643. schemaKey: Activity
  3644. startDate: '2025-06-06T20:46:52.235630-04:00'
  3645. wasAssociatedWith:
  3646. - identifier: RRID:SCR_019009
  3647. name: DANDI Command Line Interface
  3648. schemaKey: Software
  3649. url: https://github.com/dandi/dandi-cli
  3650. version: 0.69.3
Tip!

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

Comments

Loading...