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 111 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
  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. digest:
  13. dandi:dandi-etag: 5b160de97f779860abb29976b8a88d08-10
  14. dandi:sha2-256: d120268c03ef41e6369bbe0e4809973bac0937da94498b756dadd72bb356a1ef
  15. encodingFormat: application/x-nwb
  16. id: dandiasset:769cad36-a4d5-4ffa-be7a-77c991d8e62d
  17. identifier: 769cad36-a4d5-4ffa-be7a-77c991d8e62d
  18. keywords:
  19. - Glymphatic, Perivascular space, Periarterial space, Cerebrospinal fluid.
  20. measurementTechnique: []
  21. path: sub-r-22-07-06-rat2/sub-r-22-07-06-rat2_ses-r-22-07-06-rat2-zstasck-up-1x_image.nwb
  22. schemaKey: Asset
  23. schemaVersion: 0.6.10
  24. variableMeasured: []
  25. wasAttributedTo:
  26. - age:
  27. schemaKey: PropertyValue
  28. unitText: ISO-8601 duration
  29. value: P54D
  30. valueReference:
  31. schemaKey: PropertyValue
  32. value: dandi:BirthReference
  33. identifier: r-22-07-06-rat2
  34. schemaKey: Participant
  35. sex:
  36. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  37. name: Male
  38. schemaKey: SexType
  39. species:
  40. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  41. name: Rattus norvegicus - Norway rat
  42. schemaKey: SpeciesType
  43. wasGeneratedBy:
  44. - description: zstasck-up-1x
  45. identifier: r-22-07-06-rat2_zstasck-up-1x
  46. name: r-22-07-06-rat2_zstasck-up-1x
  47. schemaKey: Session
  48. startDate: '2022-07-06T13:58:11-05:00'
  49. - description: Metadata generated by DANDI cli
  50. endDate: '2025-06-06T17:55:30.805099-04:00'
  51. id: urn:uuid:331613fb-b9c2-4dd7-85ed-7f1459c5e15d
  52. name: Metadata generation
  53. schemaKey: Activity
  54. startDate: '2025-06-06T17:55:30.804202-04:00'
  55. wasAssociatedWith:
  56. - identifier: RRID:SCR_019009
  57. name: DANDI Command Line Interface
  58. schemaKey: Software
  59. url: https://github.com/dandi/dandi-cli
  60. version: 0.69.3
  61. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
  62. access:
  63. - schemaKey: AccessRequirements
  64. status: dandi:OpenAccess
  65. approach: []
  66. blobDateModified: '2025-06-05T22:18:33.525750-04:00'
  67. contentSize: 10093464409
  68. contentUrl:
  69. - https://api.dandiarchive.org/api/assets/388033ba-3be2-44da-965a-35ab6c50bc17/download/
  70. - https://dandiarchive.s3.amazonaws.com/blobs/a7b/a0a/a7ba0a67-01da-4f55-ae2f-718f4059a1b6
  71. dateModified: '2025-06-06T17:52:58.533297-04:00'
  72. digest:
  73. dandi:dandi-etag: 43497c9bebf580a46dc0eed79e8c27c0-151
  74. dandi:sha2-256: e2e87d61c0f3978776922aa9b48e3a64737c2ac0215038792c9a0fca9c72897f
  75. encodingFormat: application/x-nwb
  76. id: dandiasset:388033ba-3be2-44da-965a-35ab6c50bc17
  77. identifier: 388033ba-3be2-44da-965a-35ab6c50bc17
  78. keywords:
  79. - Glymphatic, Perivascular space, Periarterial space, Cerebrospinal fluid.
  80. measurementTechnique: []
  81. path: sub-r-22-07-06-rat2/sub-r-22-07-06-rat2_ses-r-22-07-06-rat2-Particles-down-2x_image.nwb
  82. schemaKey: Asset
  83. schemaVersion: 0.6.10
  84. variableMeasured: []
  85. wasAttributedTo:
  86. - age:
  87. schemaKey: PropertyValue
  88. unitText: ISO-8601 duration
  89. value: P54D
  90. valueReference:
  91. schemaKey: PropertyValue
  92. value: dandi:BirthReference
  93. identifier: r-22-07-06-rat2
  94. schemaKey: Participant
  95. sex:
  96. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  97. name: Male
  98. schemaKey: SexType
  99. species:
  100. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  101. name: Rattus norvegicus - Norway rat
  102. schemaKey: SpeciesType
  103. wasGeneratedBy:
  104. - description: Particles-down-2x, ECG, respiration
  105. identifier: r-22-07-06-rat2_Particles-down-2x
  106. name: r-22-07-06-rat2_Particles-down-2x
  107. schemaKey: Session
  108. startDate: '2022-07-06T13:50:59-05:00'
  109. - description: Metadata generated by DANDI cli
  110. endDate: '2025-06-06T17:52:58.533286-04:00'
  111. id: urn:uuid:4dbdcb46-f4ca-447c-985b-54316971d4cb
  112. name: Metadata generation
  113. schemaKey: Activity
  114. startDate: '2025-06-06T17:52:58.532465-04:00'
  115. wasAssociatedWith:
  116. - identifier: RRID:SCR_019009
  117. name: DANDI Command Line Interface
  118. schemaKey: Software
  119. url: https://github.com/dandi/dandi-cli
  120. version: 0.69.3
  121. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
  122. access:
  123. - schemaKey: AccessRequirements
  124. status: dandi:OpenAccess
  125. approach: []
  126. blobDateModified: '2025-06-05T21:54:02.537616-04:00'
  127. contentSize: 10571416016
  128. contentUrl:
  129. - https://api.dandiarchive.org/api/assets/4dd79fc8-4c79-4130-a358-8580ffb27e83/download/
  130. - https://dandiarchive.s3.amazonaws.com/blobs/2fe/e08/2fee08ca-ab01-42b0-bf15-2423d1287a01
  131. dateModified: '2025-06-06T17:54:32.707481-04:00'
  132. digest:
  133. dandi:dandi-etag: ea5bab432bf9d5726aea739f603fff86-158
  134. dandi:sha2-256: 1ae2be5f651e8768330a575ede4fcff799698c87f7f8c0378eb8b51b81bf2c34
  135. encodingFormat: application/x-nwb
  136. id: dandiasset:4dd79fc8-4c79-4130-a358-8580ffb27e83
  137. identifier: 4dd79fc8-4c79-4130-a358-8580ffb27e83
  138. keywords:
  139. - Glymphatic, Perivascular space, Periarterial space, Cerebrospinal fluid.
  140. measurementTechnique: []
  141. 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
  142. schemaKey: Asset
  143. schemaVersion: 0.6.10
  144. variableMeasured: []
  145. wasAttributedTo:
  146. - age:
  147. schemaKey: PropertyValue
  148. unitText: ISO-8601 duration
  149. value: P54D
  150. valueReference:
  151. schemaKey: PropertyValue
  152. value: dandi:BirthReference
  153. identifier: r-22-07-06-rat2
  154. schemaKey: Participant
  155. sex:
  156. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  157. name: Male
  158. schemaKey: SexType
  159. species:
  160. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  161. name: Rattus norvegicus - Norway rat
  162. schemaKey: SpeciesType
  163. wasGeneratedBy:
  164. - description: Particles-up-1x-001, ECG, respiration
  165. identifier: r-22-07-06-rat2_Particles-up-1x-001
  166. name: r-22-07-06-rat2_Particles-up-1x-001
  167. schemaKey: Session
  168. startDate: '2022-07-06T14:00:35-05:00'
  169. - description: Metadata generated by DANDI cli
  170. endDate: '2025-06-06T17:54:32.707470-04:00'
  171. id: urn:uuid:5d9ae763-1698-4e15-9489-d2d9dbf94798
  172. name: Metadata generation
  173. schemaKey: Activity
  174. startDate: '2025-06-06T17:54:32.706650-04:00'
  175. wasAssociatedWith:
  176. - identifier: RRID:SCR_019009
  177. name: DANDI Command Line Interface
  178. schemaKey: Software
  179. url: https://github.com/dandi/dandi-cli
  180. version: 0.69.3
  181. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
  182. access:
  183. - schemaKey: AccessRequirements
  184. status: dandi:OpenAccess
  185. approach: []
  186. blobDateModified: '2025-06-06T15:44:29.697286-04:00'
  187. contentSize: 503072084
  188. contentUrl:
  189. - https://api.dandiarchive.org/api/assets/66986768-d7d1-4cab-b305-4255f995c199/download/
  190. - https://dandiarchive.s3.amazonaws.com/blobs/029/bf6/029bf697-4540-4395-b264-3edb210470a8
  191. dateModified: '2025-06-06T17:57:28.810543-04:00'
  192. digest:
  193. dandi:dandi-etag: c42707bf7d5be3e3c808beb7efadd90d-8
  194. dandi:sha2-256: 73887302805ba3793fd7291c66bec149955b38172605350c085b7ee0ebeace19
  195. encodingFormat: application/x-nwb
  196. id: dandiasset:66986768-d7d1-4cab-b305-4255f995c199
  197. identifier: 66986768-d7d1-4cab-b305-4255f995c199
  198. keywords:
  199. - Glymphatic, Perivascular space, Periarterial space, Cerebrospinal fluid.
  200. measurementTechnique: []
  201. path: sub-r-22-08-26-rat4/sub-r-22-08-26-rat4_ses-r-22-08-26-rat4-5-Zstack-up_image.nwb
  202. schemaKey: Asset
  203. schemaVersion: 0.6.10
  204. variableMeasured: []
  205. wasAttributedTo:
  206. - age:
  207. schemaKey: PropertyValue
  208. unitText: ISO-8601 duration
  209. value: P105D
  210. valueReference:
  211. schemaKey: PropertyValue
  212. value: dandi:BirthReference
  213. identifier: r-22-08-26-rat4
  214. schemaKey: Participant
  215. sex:
  216. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  217. name: Male
  218. schemaKey: SexType
  219. species:
  220. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  221. name: Rattus norvegicus - Norway rat
  222. schemaKey: SpeciesType
  223. wasGeneratedBy:
  224. - description: 5-Zstack-up
  225. identifier: r-22-08-26-rat4_5-Zstack-up
  226. name: r-22-08-26-rat4_5-Zstack-up
  227. schemaKey: Session
  228. startDate: '2022-08-16T16:24:33-05:00'
  229. - description: Metadata generated by DANDI cli
  230. endDate: '2025-06-06T17:57:28.810532-04:00'
  231. id: urn:uuid:6cadaca4-e4a2-4674-b6a2-9d24f48e01eb
  232. name: Metadata generation
  233. schemaKey: Activity
  234. startDate: '2025-06-06T17:57:28.809741-04:00'
  235. wasAssociatedWith:
  236. - identifier: RRID:SCR_019009
  237. name: DANDI Command Line Interface
  238. schemaKey: Software
  239. url: https://github.com/dandi/dandi-cli
  240. version: 0.69.3
  241. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
  242. access:
  243. - schemaKey: AccessRequirements
  244. status: dandi:OpenAccess
  245. approach: []
  246. blobDateModified: '2025-06-05T22:06:26.256775-04:00'
  247. contentSize: 9998381174
  248. contentUrl:
  249. - https://api.dandiarchive.org/api/assets/26fa6ef5-52c8-4383-8634-4242a33feec8/download/
  250. - https://dandiarchive.s3.amazonaws.com/blobs/850/54f/85054f4b-2707-434d-b1c9-e449b7deb898
  251. dateModified: '2025-06-06T17:57:44.264138-04:00'
  252. digest:
  253. dandi:dandi-etag: 699b34afd0de11d8158d5c9355e3a498-149
  254. dandi:sha2-256: 2b0d1b5034a80c53dd18e3119ec7331e70cf7e9d191f255b5af28f839f188564
  255. encodingFormat: application/x-nwb
  256. id: dandiasset:26fa6ef5-52c8-4383-8634-4242a33feec8
  257. identifier: 26fa6ef5-52c8-4383-8634-4242a33feec8
  258. keywords:
  259. - Glymphatic, Perivascular space, Periarterial space, Cerebrospinal fluid.
  260. measurementTechnique: []
  261. path: sub-r-22-07-06-rat2/sub-r-22-07-06-rat2_ses-r-22-07-06-rat2-Particles-up-1x_image.nwb
  262. schemaKey: Asset
  263. schemaVersion: 0.6.10
  264. variableMeasured: []
  265. wasAttributedTo:
  266. - age:
  267. schemaKey: PropertyValue
  268. unitText: ISO-8601 duration
  269. value: P54D
  270. valueReference:
  271. schemaKey: PropertyValue
  272. value: dandi:BirthReference
  273. identifier: r-22-07-06-rat2
  274. schemaKey: Participant
  275. sex:
  276. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  277. name: Male
  278. schemaKey: SexType
  279. species:
  280. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  281. name: Rattus norvegicus - Norway rat
  282. schemaKey: SpeciesType
  283. wasGeneratedBy:
  284. - description: Particles-up-1x, ECG, respiration
  285. identifier: r-22-07-06-rat2_Particles-up-1x
  286. name: r-22-07-06-rat2_Particles-up-1x
  287. schemaKey: Session
  288. startDate: '2022-07-06T13:38:53-05:00'
  289. - description: Metadata generated by DANDI cli
  290. endDate: '2025-06-06T17:57:44.264127-04:00'
  291. id: urn:uuid:29fc2b20-5ced-4fa0-9130-a4a5cca25157
  292. name: Metadata generation
  293. schemaKey: Activity
  294. startDate: '2025-06-06T17:57:44.263315-04:00'
  295. wasAssociatedWith:
  296. - identifier: RRID:SCR_019009
  297. name: DANDI Command Line Interface
  298. schemaKey: Software
  299. url: https://github.com/dandi/dandi-cli
  300. version: 0.69.3
  301. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
  302. access:
  303. - schemaKey: AccessRequirements
  304. status: dandi:OpenAccess
  305. approach: []
  306. blobDateModified: '2025-06-06T15:46:09.330704-04:00'
  307. contentSize: 497000814
  308. contentUrl:
  309. - https://api.dandiarchive.org/api/assets/d995aa93-28b9-4e41-8e72-a74db4f72a13/download/
  310. - https://dandiarchive.s3.amazonaws.com/blobs/395/e07/395e0784-9f7d-46a5-973c-4130e1da21c6
  311. dateModified: '2025-06-06T17:59:13.033792-04:00'
  312. digest:
  313. dandi:dandi-etag: 28d99cd8ac74a513f4d635137933b615-8
  314. dandi:sha2-256: 8e716500d375e3ebb902d9075d9299db0e4500e4966c2e7681af71669b10180f
  315. encodingFormat: application/x-nwb
  316. id: dandiasset:d995aa93-28b9-4e41-8e72-a74db4f72a13
  317. identifier: d995aa93-28b9-4e41-8e72-a74db4f72a13
  318. keywords:
  319. - Glymphatic, Perivascular space, Periarterial space, Cerebrospinal fluid.
  320. measurementTechnique: []
  321. path: sub-r-22-08-26-rat4/sub-r-22-08-26-rat4_ses-r-22-08-26-rat4-7-Zstack-down_image.nwb
  322. schemaKey: Asset
  323. schemaVersion: 0.6.10
  324. variableMeasured: []
  325. wasAttributedTo:
  326. - age:
  327. schemaKey: PropertyValue
  328. unitText: ISO-8601 duration
  329. value: P105D
  330. valueReference:
  331. schemaKey: PropertyValue
  332. value: dandi:BirthReference
  333. identifier: r-22-08-26-rat4
  334. schemaKey: Participant
  335. sex:
  336. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  337. name: Male
  338. schemaKey: SexType
  339. species:
  340. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  341. name: Rattus norvegicus - Norway rat
  342. schemaKey: SpeciesType
  343. wasGeneratedBy:
  344. - description: 7-Zstack-down
  345. identifier: r-22-08-26-rat4_7-Zstack-down
  346. name: r-22-08-26-rat4_7-Zstack-down
  347. schemaKey: Session
  348. startDate: '2022-08-16T16:37:52-05:00'
  349. - description: Metadata generated by DANDI cli
  350. endDate: '2025-06-06T17:59:13.033781-04:00'
  351. id: urn:uuid:30524866-a992-472e-8254-11b49174ff83
  352. name: Metadata generation
  353. schemaKey: Activity
  354. startDate: '2025-06-06T17:59:13.032775-04:00'
  355. wasAssociatedWith:
  356. - identifier: RRID:SCR_019009
  357. name: DANDI Command Line Interface
  358. schemaKey: Software
  359. url: https://github.com/dandi/dandi-cli
  360. version: 0.69.3
  361. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
  362. access:
  363. - schemaKey: AccessRequirements
  364. status: dandi:OpenAccess
  365. approach: []
  366. blobDateModified: '2025-06-05T21:40:59.408769-04:00'
  367. contentSize: 12081586247
  368. contentUrl:
  369. - https://api.dandiarchive.org/api/assets/884fa2b7-6767-4908-b240-31a432e5cefe/download/
  370. - https://dandiarchive.s3.amazonaws.com/blobs/faf/961/faf961d6-7e15-48b0-9a58-a97ed3d77686
  371. dateModified: '2025-06-06T18:00:18.933215-04:00'
  372. digest:
  373. dandi:dandi-etag: 75961bbc00682af5a0ac0ff684ff7956-181
  374. dandi:sha2-256: 196de833c275b3805557f4253499edade810b8b016c482ca2b8f14e05c0e0607
  375. encodingFormat: application/x-nwb
  376. id: dandiasset:884fa2b7-6767-4908-b240-31a432e5cefe
  377. identifier: 884fa2b7-6767-4908-b240-31a432e5cefe
  378. keywords:
  379. - Glymphatic, Perivascular space, Periarterial space, Cerebrospinal fluid.
  380. measurementTechnique: []
  381. 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
  382. schemaKey: Asset
  383. schemaVersion: 0.6.10
  384. variableMeasured: []
  385. wasAttributedTo:
  386. - age:
  387. schemaKey: PropertyValue
  388. unitText: ISO-8601 duration
  389. value: P54D
  390. valueReference:
  391. schemaKey: PropertyValue
  392. value: dandi:BirthReference
  393. identifier: r-22-07-06-rat2
  394. schemaKey: Participant
  395. sex:
  396. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  397. name: Male
  398. schemaKey: SexType
  399. species:
  400. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  401. name: Rattus norvegicus - Norway rat
  402. schemaKey: SpeciesType
  403. wasGeneratedBy:
  404. - description: Particles-up-2x-001, ECG, respiration
  405. identifier: r-22-07-06-rat2_Particles-up-2x-001
  406. name: r-22-07-06-rat2_Particles-up-2x-001
  407. schemaKey: Session
  408. startDate: '2022-07-06T13:44:21-05:00'
  409. - description: Metadata generated by DANDI cli
  410. endDate: '2025-06-06T18:00:18.933203-04:00'
  411. id: urn:uuid:fd7ebbb5-be11-47b9-a369-4576b5664c8f
  412. name: Metadata generation
  413. schemaKey: Activity
  414. startDate: '2025-06-06T18:00:18.932387-04:00'
  415. wasAssociatedWith:
  416. - identifier: RRID:SCR_019009
  417. name: DANDI Command Line Interface
  418. schemaKey: Software
  419. url: https://github.com/dandi/dandi-cli
  420. version: 0.69.3
  421. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
  422. access:
  423. - schemaKey: AccessRequirements
  424. status: dandi:OpenAccess
  425. approach: []
  426. blobDateModified: '2025-06-06T15:47:11.015198-04:00'
  427. contentSize: 788686821
  428. contentUrl:
  429. - https://api.dandiarchive.org/api/assets/b730571f-3455-4b9a-a567-2ff6b60b4ee2/download/
  430. - https://dandiarchive.s3.amazonaws.com/blobs/48d/8ad/48d8ad7e-d65c-4f78-b87a-1003062382a0
  431. dateModified: '2025-06-06T18:02:06.402274-04:00'
  432. digest:
  433. dandi:dandi-etag: 37b436e8112aee66a5d3b5ae69240b2a-12
  434. dandi:sha2-256: 017328a08ee70da150dee3c36b944e77a289f502f3213c185425a4b0f7b4a90b
  435. encodingFormat: application/x-nwb
  436. id: dandiasset:b730571f-3455-4b9a-a567-2ff6b60b4ee2
  437. identifier: b730571f-3455-4b9a-a567-2ff6b60b4ee2
  438. keywords:
  439. - Glymphatic, Perivascular space, Periarterial space, Cerebrospinal fluid.
  440. measurementTechnique: []
  441. path: sub-r-23-03-31/sub-r-23-03-31_ses-r-23-03-31-Zstack-down_image.nwb
  442. schemaKey: Asset
  443. schemaVersion: 0.6.10
  444. variableMeasured: []
  445. wasAttributedTo:
  446. - age:
  447. schemaKey: PropertyValue
  448. unitText: ISO-8601 duration
  449. value: P68D
  450. valueReference:
  451. schemaKey: PropertyValue
  452. value: dandi:BirthReference
  453. identifier: r-23-03-31
  454. schemaKey: Participant
  455. sex:
  456. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  457. name: Male
  458. schemaKey: SexType
  459. species:
  460. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  461. name: Rattus norvegicus - Norway rat
  462. schemaKey: SpeciesType
  463. wasGeneratedBy:
  464. - description: Zstack-down
  465. identifier: r-23-03-31_Zstack-down
  466. name: r-23-03-31_Zstack-down
  467. schemaKey: Session
  468. startDate: '2023-03-31T13:28:15-05:00'
  469. - description: Metadata generated by DANDI cli
  470. endDate: '2025-06-06T18:02:06.402263-04:00'
  471. id: urn:uuid:2dfb2452-e08b-4c28-8e2e-b993785551a7
  472. name: Metadata generation
  473. schemaKey: Activity
  474. startDate: '2025-06-06T18:02:06.401434-04:00'
  475. wasAssociatedWith:
  476. - identifier: RRID:SCR_019009
  477. name: DANDI Command Line Interface
  478. schemaKey: Software
  479. url: https://github.com/dandi/dandi-cli
  480. version: 0.69.3
  481. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
  482. access:
  483. - schemaKey: AccessRequirements
  484. status: dandi:OpenAccess
  485. approach: []
  486. blobDateModified: '2025-06-06T15:45:31.630790-04:00'
  487. contentSize: 801507123
  488. contentUrl:
  489. - https://api.dandiarchive.org/api/assets/bfad2bed-076d-4e28-8ea9-d288b44fcbef/download/
  490. - https://dandiarchive.s3.amazonaws.com/blobs/a04/996/a04996b1-829d-4cca-a8e5-b621d4387ab1
  491. dateModified: '2025-06-06T18:02:16.352276-04:00'
  492. digest:
  493. dandi:dandi-etag: 9e0b8fe0764a84a8069fc23ddfbb0315-12
  494. dandi:sha2-256: 66012a627f325546685c188aca97988a2d8acf53687342b2324c61ad4635ed92
  495. encodingFormat: application/x-nwb
  496. id: dandiasset:bfad2bed-076d-4e28-8ea9-d288b44fcbef
  497. identifier: bfad2bed-076d-4e28-8ea9-d288b44fcbef
  498. keywords:
  499. - Glymphatic, Perivascular space, Periarterial space, Cerebrospinal fluid.
  500. measurementTechnique: []
  501. path: sub-r-23-03-31/sub-r-23-03-31_ses-r-23-03-31-Zstack-up_image.nwb
  502. schemaKey: Asset
  503. schemaVersion: 0.6.10
  504. variableMeasured: []
  505. wasAttributedTo:
  506. - age:
  507. schemaKey: PropertyValue
  508. unitText: ISO-8601 duration
  509. value: P68D
  510. valueReference:
  511. schemaKey: PropertyValue
  512. value: dandi:BirthReference
  513. identifier: r-23-03-31
  514. schemaKey: Participant
  515. sex:
  516. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  517. name: Male
  518. schemaKey: SexType
  519. species:
  520. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  521. name: Rattus norvegicus - Norway rat
  522. schemaKey: SpeciesType
  523. wasGeneratedBy:
  524. - description: Zstack-up
  525. identifier: r-23-03-31_Zstack-up
  526. name: r-23-03-31_Zstack-up
  527. schemaKey: Session
  528. startDate: '2023-03-31T12:59:46-05:00'
  529. - description: Metadata generated by DANDI cli
  530. endDate: '2025-06-06T18:02:16.352264-04:00'
  531. id: urn:uuid:7a05b8b4-4d88-43e3-bead-c6d9dffb32af
  532. name: Metadata generation
  533. schemaKey: Activity
  534. startDate: '2025-06-06T18:02:16.351393-04:00'
  535. wasAssociatedWith:
  536. - identifier: RRID:SCR_019009
  537. name: DANDI Command Line Interface
  538. schemaKey: Software
  539. url: https://github.com/dandi/dandi-cli
  540. version: 0.69.3
  541. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
  542. access:
  543. - schemaKey: AccessRequirements
  544. status: dandi:OpenAccess
  545. approach: []
  546. blobDateModified: '2025-06-05T22:58:29.792756-04:00'
  547. contentSize: 16328269767
  548. contentUrl:
  549. - https://api.dandiarchive.org/api/assets/41991fb8-9cfa-47ac-b0ba-ad6277c3ec5d/download/
  550. - https://dandiarchive.s3.amazonaws.com/blobs/b86/121/b8612132-548d-4c38-9206-556671e8e652
  551. dateModified: '2025-06-06T18:07:44.468506-04:00'
  552. digest:
  553. dandi:dandi-etag: 8f34f0d01e041ec5939923ce2c55f048-244
  554. dandi:sha2-256: a56ed1464b18ca0292d72e25e348e45a1d5a57fa06c1f8abf69ed20189983609
  555. encodingFormat: application/x-nwb
  556. id: dandiasset:41991fb8-9cfa-47ac-b0ba-ad6277c3ec5d
  557. identifier: 41991fb8-9cfa-47ac-b0ba-ad6277c3ec5d
  558. keywords:
  559. - Glymphatic, Perivascular space, Periarterial space, Cerebrospinal fluid.
  560. measurementTechnique: []
  561. path: sub-r-22-08-26-rat4/sub-r-22-08-26-rat4_ses-r-22-08-26-rat4-3-particles-down_image.nwb
  562. schemaKey: Asset
  563. schemaVersion: 0.6.10
  564. variableMeasured: []
  565. wasAttributedTo:
  566. - age:
  567. schemaKey: PropertyValue
  568. unitText: ISO-8601 duration
  569. value: P105D
  570. valueReference:
  571. schemaKey: PropertyValue
  572. value: dandi:BirthReference
  573. identifier: r-22-08-26-rat4
  574. schemaKey: Participant
  575. sex:
  576. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  577. name: Male
  578. schemaKey: SexType
  579. species:
  580. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  581. name: Rattus norvegicus - Norway rat
  582. schemaKey: SpeciesType
  583. wasGeneratedBy:
  584. - description: 3-particles-down, ECG, respiration
  585. identifier: r-22-08-26-rat4_3-particles-down
  586. name: r-22-08-26-rat4_3-particles-down
  587. schemaKey: Session
  588. startDate: '2022-08-16T16:08:37-05:00'
  589. - description: Metadata generated by DANDI cli
  590. endDate: '2025-06-06T18:07:44.468494-04:00'
  591. id: urn:uuid:d4bd6808-5af6-4d55-9fab-092551c1d5f4
  592. name: Metadata generation
  593. schemaKey: Activity
  594. startDate: '2025-06-06T18:07:44.467481-04:00'
  595. wasAssociatedWith:
  596. - identifier: RRID:SCR_019009
  597. name: DANDI Command Line Interface
  598. schemaKey: Software
  599. url: https://github.com/dandi/dandi-cli
  600. version: 0.69.3
  601. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
  602. access:
  603. - schemaKey: AccessRequirements
  604. status: dandi:OpenAccess
  605. approach: []
  606. blobDateModified: '2025-06-05T22:41:22.667303-04:00'
  607. contentSize: 18586181208
  608. contentUrl:
  609. - https://api.dandiarchive.org/api/assets/f461aae6-c4c2-44b1-9e2c-02242fb6cf20/download/
  610. - https://dandiarchive.s3.amazonaws.com/blobs/469/8b2/4698b24a-dba6-4fe8-be2e-2919b518659c
  611. dateModified: '2025-06-06T18:07:28.144976-04:00'
  612. digest:
  613. dandi:dandi-etag: 20a916208adb8bd58262118618492174-277
  614. dandi:sha2-256: c0ae9a2c3bc7c04551adfb5d1c7d9fefe35f6e6dc7877a02fa367b571c3256fd
  615. encodingFormat: application/x-nwb
  616. id: dandiasset:f461aae6-c4c2-44b1-9e2c-02242fb6cf20
  617. identifier: f461aae6-c4c2-44b1-9e2c-02242fb6cf20
  618. keywords:
  619. - Glymphatic, Perivascular space, Periarterial space, Cerebrospinal fluid.
  620. measurementTechnique: []
  621. path: sub-r-22-08-26-rat4/sub-r-22-08-26-rat4_ses-r-22-08-26-rat4-2-particles-up_image.nwb
  622. schemaKey: Asset
  623. schemaVersion: 0.6.10
  624. variableMeasured: []
  625. wasAttributedTo:
  626. - age:
  627. schemaKey: PropertyValue
  628. unitText: ISO-8601 duration
  629. value: P105D
  630. valueReference:
  631. schemaKey: PropertyValue
  632. value: dandi:BirthReference
  633. identifier: r-22-08-26-rat4
  634. schemaKey: Participant
  635. sex:
  636. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  637. name: Male
  638. schemaKey: SexType
  639. species:
  640. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  641. name: Rattus norvegicus - Norway rat
  642. schemaKey: SpeciesType
  643. wasGeneratedBy:
  644. - description: 2-particles-up, ECG, respiration
  645. identifier: r-22-08-26-rat4_2-particles-up
  646. name: r-22-08-26-rat4_2-particles-up
  647. schemaKey: Session
  648. startDate: '2022-08-16T15:56:51-05:00'
  649. - description: Metadata generated by DANDI cli
  650. endDate: '2025-06-06T18:07:28.144964-04:00'
  651. id: urn:uuid:2867a7f2-12e0-47f6-b41b-2dc0152156bc
  652. name: Metadata generation
  653. schemaKey: Activity
  654. startDate: '2025-06-06T18:07:28.144016-04:00'
  655. wasAssociatedWith:
  656. - identifier: RRID:SCR_019009
  657. name: DANDI Command Line Interface
  658. schemaKey: Software
  659. url: https://github.com/dandi/dandi-cli
  660. version: 0.69.3
  661. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
  662. access:
  663. - schemaKey: AccessRequirements
  664. status: dandi:OpenAccess
  665. approach: []
  666. blobDateModified: '2025-06-06T00:05:06.163809-04:00'
  667. contentSize: 12169686869
  668. contentUrl:
  669. - https://api.dandiarchive.org/api/assets/7a79a8c4-1be2-45f9-9d8b-367b7fda0c21/download/
  670. - https://dandiarchive.s3.amazonaws.com/blobs/047/193/047193ad-8daa-4505-9cfa-2e087ff7a2ca
  671. dateModified: '2025-06-06T18:09:42.230676-04:00'
  672. digest:
  673. dandi:dandi-etag: daef6b418b0b86d06a9769149bceb6b2-182
  674. dandi:sha2-256: 0e217fc26b44f77f270b7a386e2a8fb4b8fdd5c72af6d622e15352fe4574df17
  675. encodingFormat: application/x-nwb
  676. id: dandiasset:7a79a8c4-1be2-45f9-9d8b-367b7fda0c21
  677. identifier: 7a79a8c4-1be2-45f9-9d8b-367b7fda0c21
  678. keywords:
  679. - Glymphatic, Perivascular space, Periarterial space, Cerebrospinal fluid.
  680. measurementTechnique: []
  681. path: sub-r-23-03-31/sub-r-23-03-31_ses-r-23-03-31-particles-down-64min_image.nwb
  682. schemaKey: Asset
  683. schemaVersion: 0.6.10
  684. variableMeasured: []
  685. wasAttributedTo:
  686. - age:
  687. schemaKey: PropertyValue
  688. unitText: ISO-8601 duration
  689. value: P68D
  690. valueReference:
  691. schemaKey: PropertyValue
  692. value: dandi:BirthReference
  693. identifier: r-23-03-31
  694. schemaKey: Participant
  695. sex:
  696. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  697. name: Male
  698. schemaKey: SexType
  699. species:
  700. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  701. name: Rattus norvegicus - Norway rat
  702. schemaKey: SpeciesType
  703. wasGeneratedBy:
  704. - description: particles-down-64min, ECG, respiration
  705. identifier: r-23-03-31_particles-down-64min
  706. name: r-23-03-31_particles-down-64min
  707. schemaKey: Session
  708. startDate: '2023-03-31T13:21:59-05:00'
  709. - description: Metadata generated by DANDI cli
  710. endDate: '2025-06-06T18:09:42.230664-04:00'
  711. id: urn:uuid:13d207c7-10b8-4520-9ca8-6963c30dd138
  712. name: Metadata generation
  713. schemaKey: Activity
  714. startDate: '2025-06-06T18:09:42.229590-04:00'
  715. wasAssociatedWith:
  716. - identifier: RRID:SCR_019009
  717. name: DANDI Command Line Interface
  718. schemaKey: Software
  719. url: https://github.com/dandi/dandi-cli
  720. version: 0.69.3
  721. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
  722. access:
  723. - schemaKey: AccessRequirements
  724. status: dandi:OpenAccess
  725. approach: []
  726. blobDateModified: '2025-06-05T23:24:20.230075-04:00'
  727. contentSize: 19692953350
  728. contentUrl:
  729. - https://api.dandiarchive.org/api/assets/a22e9521-e5da-496d-9bd0-a3196bd22afd/download/
  730. - https://dandiarchive.s3.amazonaws.com/blobs/94d/c15/94dc159e-9cd7-4615-8f12-da3765dd547d
  731. dateModified: '2025-06-06T18:09:35.205160-04:00'
  732. digest:
  733. dandi:dandi-etag: d9871c54c09845e102c2d40989652fc3-294
  734. dandi:sha2-256: c38bbfda9c3ccd6f62e57775d8b477a0ec60255d30895565ae94718104ec4399
  735. encodingFormat: application/x-nwb
  736. id: dandiasset:a22e9521-e5da-496d-9bd0-a3196bd22afd
  737. identifier: a22e9521-e5da-496d-9bd0-a3196bd22afd
  738. keywords:
  739. - Glymphatic, Perivascular space, Periarterial space, Cerebrospinal fluid.
  740. measurementTechnique: []
  741. 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
  742. schemaKey: Asset
  743. schemaVersion: 0.6.10
  744. variableMeasured: []
  745. wasAttributedTo:
  746. - age:
  747. schemaKey: PropertyValue
  748. unitText: ISO-8601 duration
  749. value: P105D
  750. valueReference:
  751. schemaKey: PropertyValue
  752. value: dandi:BirthReference
  753. identifier: r-22-08-26-rat4
  754. schemaKey: Participant
  755. sex:
  756. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  757. name: Male
  758. schemaKey: SexType
  759. species:
  760. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  761. name: Rattus norvegicus - Norway rat
  762. schemaKey: SpeciesType
  763. wasGeneratedBy:
  764. - description: 6-particles-up_001, ECG, respiration
  765. identifier: r-22-08-26-rat4_6-particles-up_001
  766. name: r-22-08-26-rat4_6-particles-up_001
  767. schemaKey: Session
  768. startDate: '2022-08-16T16:26:41-05:00'
  769. - description: Metadata generated by DANDI cli
  770. endDate: '2025-06-06T18:09:35.205145-04:00'
  771. id: urn:uuid:d226c26e-41d7-4c25-84ae-c30d12a46811
  772. name: Metadata generation
  773. schemaKey: Activity
  774. startDate: '2025-06-06T18:09:35.203824-04:00'
  775. wasAssociatedWith:
  776. - identifier: RRID:SCR_019009
  777. name: DANDI Command Line Interface
  778. schemaKey: Software
  779. url: https://github.com/dandi/dandi-cli
  780. version: 0.69.3
  781. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
  782. access:
  783. - schemaKey: AccessRequirements
  784. status: dandi:OpenAccess
  785. approach: []
  786. blobDateModified: '2025-06-05T23:51:30.196769-04:00'
  787. contentSize: 19429734835
  788. contentUrl:
  789. - https://api.dandiarchive.org/api/assets/4bf0837e-c32e-4ffa-84b3-4fc461891bdb/download/
  790. - https://dandiarchive.s3.amazonaws.com/blobs/8df/942/8df94214-84ad-426a-bb21-92b8a748005a
  791. dateModified: '2025-06-06T18:09:54.819323-04:00'
  792. digest:
  793. dandi:dandi-etag: 250ba68faf3671f3f8ba142031a70a65-290
  794. dandi:sha2-256: 2ff81179899e27bdb56bec8e21a1a4e58b0b25ee4b2eb1d4e3a4d9b3644ffb88
  795. encodingFormat: application/x-nwb
  796. id: dandiasset:4bf0837e-c32e-4ffa-84b3-4fc461891bdb
  797. identifier: 4bf0837e-c32e-4ffa-84b3-4fc461891bdb
  798. keywords:
  799. - Glymphatic, Perivascular space, Periarterial space, Cerebrospinal fluid.
  800. measurementTechnique: []
  801. 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
  802. schemaKey: Asset
  803. schemaVersion: 0.6.10
  804. variableMeasured: []
  805. wasAttributedTo:
  806. - age:
  807. schemaKey: PropertyValue
  808. unitText: ISO-8601 duration
  809. value: P105D
  810. valueReference:
  811. schemaKey: PropertyValue
  812. value: dandi:BirthReference
  813. identifier: r-22-08-26-rat4
  814. schemaKey: Participant
  815. sex:
  816. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  817. name: Male
  818. schemaKey: SexType
  819. species:
  820. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  821. name: Rattus norvegicus - Norway rat
  822. schemaKey: SpeciesType
  823. wasGeneratedBy:
  824. - description: 8-Particles-down_001, ECG, respiration
  825. identifier: r-22-08-26-rat4_8-Particles-down_001
  826. name: r-22-08-26-rat4_8-Particles-down_001
  827. schemaKey: Session
  828. startDate: '2022-08-16T16:39:53-05:00'
  829. - description: Metadata generated by DANDI cli
  830. endDate: '2025-06-06T18:09:54.819312-04:00'
  831. id: urn:uuid:2c41d1a4-ac12-4630-af73-41b1fdf72617
  832. name: Metadata generation
  833. schemaKey: Activity
  834. startDate: '2025-06-06T18:09:54.818446-04:00'
  835. wasAssociatedWith:
  836. - identifier: RRID:SCR_019009
  837. name: DANDI Command Line Interface
  838. schemaKey: Software
  839. url: https://github.com/dandi/dandi-cli
  840. version: 0.69.3
  841. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
  842. access:
  843. - schemaKey: AccessRequirements
  844. status: dandi:OpenAccess
  845. approach: []
  846. blobDateModified: '2025-06-06T00:30:07.869650-04:00'
  847. contentSize: 11185209346
  848. contentUrl:
  849. - https://api.dandiarchive.org/api/assets/f47a8a0c-19c7-4fa6-a1cd-08cbc4fc24c4/download/
  850. - https://dandiarchive.s3.amazonaws.com/blobs/c75/3c6/c753c6cb-d5c7-415e-be08-318fb1ded92b
  851. dateModified: '2025-06-06T18:23:12.287774-04:00'
  852. digest:
  853. dandi:dandi-etag: bdb8cf3e2498e60fb733a96cb797dac6-167
  854. dandi:sha2-256: ce65d933f6c85dd72c5c97d7b7c23acda4c2151e10613a21928553f204b15341
  855. encodingFormat: application/x-nwb
  856. id: dandiasset:f47a8a0c-19c7-4fa6-a1cd-08cbc4fc24c4
  857. identifier: f47a8a0c-19c7-4fa6-a1cd-08cbc4fc24c4
  858. keywords:
  859. - Glymphatic, Perivascular space, Periarterial space, Cerebrospinal fluid.
  860. measurementTechnique: []
  861. path: sub-r-23-03-31/sub-r-23-03-31_ses-r-23-03-31-particles-up-33min_image.nwb
  862. schemaKey: Asset
  863. schemaVersion: 0.6.10
  864. variableMeasured: []
  865. wasAttributedTo:
  866. - age:
  867. schemaKey: PropertyValue
  868. unitText: ISO-8601 duration
  869. value: P68D
  870. valueReference:
  871. schemaKey: PropertyValue
  872. value: dandi:BirthReference
  873. identifier: r-23-03-31
  874. schemaKey: Participant
  875. sex:
  876. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  877. name: Male
  878. schemaKey: SexType
  879. species:
  880. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  881. name: Rattus norvegicus - Norway rat
  882. schemaKey: SpeciesType
  883. wasGeneratedBy:
  884. - description: particles-up-33min, ECG, respiration
  885. identifier: r-23-03-31_particles-up-33min
  886. name: r-23-03-31_particles-up-33min
  887. schemaKey: Session
  888. startDate: '2023-03-31T12:52:31-05:00'
  889. - description: Metadata generated by DANDI cli
  890. endDate: '2025-06-06T18:23:12.287758-04:00'
  891. id: urn:uuid:6cc8b06c-c23f-4f7a-bf17-b848c2d61ac8
  892. name: Metadata generation
  893. schemaKey: Activity
  894. startDate: '2025-06-06T18:23:12.286480-04:00'
  895. wasAssociatedWith:
  896. - identifier: RRID:SCR_019009
  897. name: DANDI Command Line Interface
  898. schemaKey: Software
  899. url: https://github.com/dandi/dandi-cli
  900. version: 0.69.3
  901. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
  902. access:
  903. - schemaKey: AccessRequirements
  904. status: dandi:OpenAccess
  905. approach: []
  906. blobDateModified: '2025-06-06T15:50:05.780418-04:00'
  907. contentSize: 693374083
  908. contentUrl:
  909. - https://api.dandiarchive.org/api/assets/03262e59-c142-4c16-9432-7b3728e56e92/download/
  910. - https://dandiarchive.s3.amazonaws.com/blobs/f1e/7e2/f1e7e2e0-152e-4f60-9311-c66733559c45
  911. dateModified: '2025-06-06T18:25:36.375856-04:00'
  912. digest:
  913. dandi:dandi-etag: 731b78e353387081ba06d00b4f8409ca-11
  914. dandi:sha2-256: a4573dda3e0029a66df5a4452423cfbf8ccecd33e7053fe41f1859483c2fbe3e
  915. encodingFormat: application/x-nwb
  916. id: dandiasset:03262e59-c142-4c16-9432-7b3728e56e92
  917. identifier: 03262e59-c142-4c16-9432-7b3728e56e92
  918. keywords:
  919. - Glymphatic, Perivascular space, Periarterial space, Cerebrospinal fluid.
  920. measurementTechnique: []
  921. path: sub-r-23-09-05/sub-r-23-09-05_ses-r-23-09-05-zstack-art1-up-118min-001_image.nwb
  922. schemaKey: Asset
  923. schemaVersion: 0.6.10
  924. variableMeasured: []
  925. wasAttributedTo:
  926. - age:
  927. schemaKey: PropertyValue
  928. unitText: ISO-8601 duration
  929. value: P58D
  930. valueReference:
  931. schemaKey: PropertyValue
  932. value: dandi:BirthReference
  933. identifier: r-23-09-05
  934. schemaKey: Participant
  935. sex:
  936. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  937. name: Male
  938. schemaKey: SexType
  939. species:
  940. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  941. name: Rattus norvegicus - Norway rat
  942. schemaKey: SpeciesType
  943. wasGeneratedBy:
  944. - description: zstack-art1-up-118min_001
  945. identifier: r-23-09-05_zstack-art1-up-118min_001
  946. name: r-23-09-05_zstack-art1-up-118min_001
  947. schemaKey: Session
  948. startDate: '2023-09-05T14:25:11-05:00'
  949. - description: Metadata generated by DANDI cli
  950. endDate: '2025-06-06T18:25:36.375845-04:00'
  951. id: urn:uuid:32a1803f-ca81-4e42-8434-6df300c06e23
  952. name: Metadata generation
  953. schemaKey: Activity
  954. startDate: '2025-06-06T18:25:36.375038-04:00'
  955. wasAssociatedWith:
  956. - identifier: RRID:SCR_019009
  957. name: DANDI Command Line Interface
  958. schemaKey: Software
  959. url: https://github.com/dandi/dandi-cli
  960. version: 0.69.3
  961. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
  962. access:
  963. - schemaKey: AccessRequirements
  964. status: dandi:OpenAccess
  965. approach: []
  966. blobDateModified: '2025-06-06T15:49:16.694234-04:00'
  967. contentSize: 905930654
  968. contentUrl:
  969. - https://api.dandiarchive.org/api/assets/388152d4-3540-42a8-9d79-a84287d289cd/download/
  970. - https://dandiarchive.s3.amazonaws.com/blobs/ffa/5f9/ffa5f9f8-8032-425d-bf32-98dd274b4888
  971. dateModified: '2025-06-06T18:26:21.910261-04:00'
  972. digest:
  973. dandi:dandi-etag: 85aecb2e42e5fc0f9d54ad6dd4a69a14-14
  974. dandi:sha2-256: b660a5587eb3fced795f45c801397c7350adbfb060807930f2ff21e9f3c20000
  975. encodingFormat: application/x-nwb
  976. id: dandiasset:388152d4-3540-42a8-9d79-a84287d289cd
  977. identifier: 388152d4-3540-42a8-9d79-a84287d289cd
  978. keywords:
  979. - Glymphatic, Perivascular space, Periarterial space, Cerebrospinal fluid.
  980. measurementTechnique: []
  981. path: sub-r-23-09-05/sub-r-23-09-05_ses-r-23-09-05-zstack-art2-down-92min_image.nwb
  982. schemaKey: Asset
  983. schemaVersion: 0.6.10
  984. variableMeasured: []
  985. wasAttributedTo:
  986. - age:
  987. schemaKey: PropertyValue
  988. unitText: ISO-8601 duration
  989. value: P58D
  990. valueReference:
  991. schemaKey: PropertyValue
  992. value: dandi:BirthReference
  993. identifier: r-23-09-05
  994. schemaKey: Participant
  995. sex:
  996. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  997. name: Male
  998. schemaKey: SexType
  999. species:
  1000. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  1001. name: Rattus norvegicus - Norway rat
  1002. schemaKey: SpeciesType
  1003. wasGeneratedBy:
  1004. - description: zstack-art2-down-92min
  1005. identifier: r-23-09-05_zstack-art2-down-92min
  1006. name: r-23-09-05_zstack-art2-down-92min
  1007. schemaKey: Session
  1008. startDate: '2023-09-05T13:56:09-05:00'
  1009. - description: Metadata generated by DANDI cli
  1010. endDate: '2025-06-06T18:26:21.910249-04:00'
  1011. id: urn:uuid:c0eb1c69-dce7-48c8-8074-873f3e34bd98
  1012. name: Metadata generation
  1013. schemaKey: Activity
  1014. startDate: '2025-06-06T18:26:21.909362-04:00'
  1015. wasAssociatedWith:
  1016. - identifier: RRID:SCR_019009
  1017. name: DANDI Command Line Interface
  1018. schemaKey: Software
  1019. url: https://github.com/dandi/dandi-cli
  1020. version: 0.69.3
  1021. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
  1022. access:
  1023. - schemaKey: AccessRequirements
  1024. status: dandi:OpenAccess
  1025. approach: []
  1026. blobDateModified: '2025-06-06T00:18:32.301489-04:00'
  1027. contentSize: 11808024064
  1028. contentUrl:
  1029. - https://api.dandiarchive.org/api/assets/194a8df6-37dd-462e-9a15-0d05840ba38b/download/
  1030. - https://dandiarchive.s3.amazonaws.com/blobs/54d/828/54d828fd-4729-4e83-8e79-b4c0ef73ca29
  1031. dateModified: '2025-06-06T18:24:00.775631-04:00'
  1032. digest:
  1033. dandi:dandi-etag: abb188168d199f493abd183c46b36118-176
  1034. dandi:sha2-256: 582db8402fd08513fd7f62fbb2ba9f2da96338823c2f6a2cee3a249cbffaa698
  1035. encodingFormat: application/x-nwb
  1036. id: dandiasset:194a8df6-37dd-462e-9a15-0d05840ba38b
  1037. identifier: 194a8df6-37dd-462e-9a15-0d05840ba38b
  1038. keywords:
  1039. - Glymphatic, Perivascular space, Periarterial space, Cerebrospinal fluid.
  1040. measurementTechnique: []
  1041. path: sub-r-23-03-31/sub-r-23-03-31_ses-r-23-03-31-particles-up2-50min_image.nwb
  1042. schemaKey: Asset
  1043. schemaVersion: 0.6.10
  1044. variableMeasured: []
  1045. wasAttributedTo:
  1046. - age:
  1047. schemaKey: PropertyValue
  1048. unitText: ISO-8601 duration
  1049. value: P68D
  1050. valueReference:
  1051. schemaKey: PropertyValue
  1052. value: dandi:BirthReference
  1053. identifier: r-23-03-31
  1054. schemaKey: Participant
  1055. sex:
  1056. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1057. name: Male
  1058. schemaKey: SexType
  1059. species:
  1060. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  1061. name: Rattus norvegicus - Norway rat
  1062. schemaKey: SpeciesType
  1063. wasGeneratedBy:
  1064. - description: particles-up2-50min, ECG, respiration
  1065. identifier: r-23-03-31_particles-up2-50min
  1066. name: r-23-03-31_particles-up2-50min
  1067. schemaKey: Session
  1068. startDate: '2023-03-31T13:09:48-05:00'
  1069. - description: Metadata generated by DANDI cli
  1070. endDate: '2025-06-06T18:24:00.775614-04:00'
  1071. id: urn:uuid:e99cef5c-3d80-4d7e-acf2-a42b51f97bce
  1072. name: Metadata generation
  1073. schemaKey: Activity
  1074. startDate: '2025-06-06T18:24:00.774216-04:00'
  1075. wasAssociatedWith:
  1076. - identifier: RRID:SCR_019009
  1077. name: DANDI Command Line Interface
  1078. schemaKey: Software
  1079. url: https://github.com/dandi/dandi-cli
  1080. version: 0.69.3
  1081. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
  1082. access:
  1083. - schemaKey: AccessRequirements
  1084. status: dandi:OpenAccess
  1085. approach: []
  1086. blobDateModified: '2025-06-06T15:48:12.971695-04:00'
  1087. contentSize: 877966361
  1088. contentUrl:
  1089. - https://api.dandiarchive.org/api/assets/cce8b4f9-4280-4ffb-9a76-49ab4a846d4d/download/
  1090. - https://dandiarchive.s3.amazonaws.com/blobs/889/f58/889f58c2-91cd-473e-bed9-a00c10762201
  1091. dateModified: '2025-06-06T18:27:14.543928-04:00'
  1092. digest:
  1093. dandi:dandi-etag: 38d4e529b367e543bfeb068231c3a74d-14
  1094. dandi:sha2-256: 5e75638da3df5d81887b33c550355ef493f3ea9479d9b266a82087aa3b659af4
  1095. encodingFormat: application/x-nwb
  1096. id: dandiasset:cce8b4f9-4280-4ffb-9a76-49ab4a846d4d
  1097. identifier: cce8b4f9-4280-4ffb-9a76-49ab4a846d4d
  1098. keywords:
  1099. - Glymphatic, Perivascular space, Periarterial space, Cerebrospinal fluid.
  1100. measurementTechnique: []
  1101. path: sub-r-23-09-05/sub-r-23-09-05_ses-r-23-09-05-zstack-art2-up-97min_image.nwb
  1102. schemaKey: Asset
  1103. schemaVersion: 0.6.10
  1104. variableMeasured: []
  1105. wasAttributedTo:
  1106. - age:
  1107. schemaKey: PropertyValue
  1108. unitText: ISO-8601 duration
  1109. value: P58D
  1110. valueReference:
  1111. schemaKey: PropertyValue
  1112. value: dandi:BirthReference
  1113. identifier: r-23-09-05
  1114. schemaKey: Participant
  1115. sex:
  1116. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1117. name: Male
  1118. schemaKey: SexType
  1119. species:
  1120. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  1121. name: Rattus norvegicus - Norway rat
  1122. schemaKey: SpeciesType
  1123. wasGeneratedBy:
  1124. - description: zstack-art2-up-97min
  1125. identifier: r-23-09-05_zstack-art2-up-97min
  1126. name: r-23-09-05_zstack-art2-up-97min
  1127. schemaKey: Session
  1128. startDate: '2023-09-05T14:00:57-05:00'
  1129. - description: Metadata generated by DANDI cli
  1130. endDate: '2025-06-06T18:27:14.543900-04:00'
  1131. id: urn:uuid:a5e558a8-b3b9-483d-a82d-18f2d20e0192
  1132. name: Metadata generation
  1133. schemaKey: Activity
  1134. startDate: '2025-06-06T18:27:14.542528-04:00'
  1135. wasAssociatedWith:
  1136. - identifier: RRID:SCR_019009
  1137. name: DANDI Command Line Interface
  1138. schemaKey: Software
  1139. url: https://github.com/dandi/dandi-cli
  1140. version: 0.69.3
  1141. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
  1142. access:
  1143. - schemaKey: AccessRequirements
  1144. status: dandi:OpenAccess
  1145. approach: []
  1146. blobDateModified: '2025-06-06T00:57:18.589769-04:00'
  1147. contentSize: 21706994463
  1148. contentUrl:
  1149. - https://api.dandiarchive.org/api/assets/a789af93-b430-4d9c-8c1d-a140ef2df386/download/
  1150. - https://dandiarchive.s3.amazonaws.com/blobs/ef1/3e7/ef13e7a5-15a7-46c3-803f-6bd3143a5465
  1151. dateModified: '2025-06-06T18:31:01.929164-04:00'
  1152. digest:
  1153. dandi:dandi-etag: ec7c190cfbcb4210555da2f8dc4a8c06-324
  1154. dandi:sha2-256: 1ca6eeb3a9ace6e817d03a148f601ad939f96e169f9820a7d9f57539f4e72a2e
  1155. encodingFormat: application/x-nwb
  1156. id: dandiasset:a789af93-b430-4d9c-8c1d-a140ef2df386
  1157. identifier: a789af93-b430-4d9c-8c1d-a140ef2df386
  1158. keywords:
  1159. - Glymphatic, Perivascular space, Periarterial space, Cerebrospinal fluid.
  1160. measurementTechnique: []
  1161. path: sub-r-23-09-05/sub-r-23-09-05_ses-r-23-09-05-particles-art1-up-101min_image.nwb
  1162. schemaKey: Asset
  1163. schemaVersion: 0.6.10
  1164. variableMeasured: []
  1165. wasAttributedTo:
  1166. - age:
  1167. schemaKey: PropertyValue
  1168. unitText: ISO-8601 duration
  1169. value: P58D
  1170. valueReference:
  1171. schemaKey: PropertyValue
  1172. value: dandi:BirthReference
  1173. identifier: r-23-09-05
  1174. schemaKey: Participant
  1175. sex:
  1176. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1177. name: Male
  1178. schemaKey: SexType
  1179. species:
  1180. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  1181. name: Rattus norvegicus - Norway rat
  1182. schemaKey: SpeciesType
  1183. wasGeneratedBy:
  1184. - description: particles-art1-up-101min, ECG, respiration
  1185. identifier: r-23-09-05_particles-art1-up-101min
  1186. name: r-23-09-05_particles-art1-up-101min
  1187. schemaKey: Session
  1188. startDate: '2023-09-05T14:05:30-05:00'
  1189. - description: Metadata generated by DANDI cli
  1190. endDate: '2025-06-06T18:31:01.929148-04:00'
  1191. id: urn:uuid:f2594846-311f-4fdb-8b61-9c6704e9fd26
  1192. name: Metadata generation
  1193. schemaKey: Activity
  1194. startDate: '2025-06-06T18:31:01.919279-04:00'
  1195. wasAssociatedWith:
  1196. - identifier: RRID:SCR_019009
  1197. name: DANDI Command Line Interface
  1198. schemaKey: Software
  1199. url: https://github.com/dandi/dandi-cli
  1200. version: 0.69.3
  1201. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
  1202. access:
  1203. - schemaKey: AccessRequirements
  1204. status: dandi:OpenAccess
  1205. approach: []
  1206. blobDateModified: '2025-06-06T15:50:42.324299-04:00'
  1207. contentSize: 471323955
  1208. contentUrl:
  1209. - https://api.dandiarchive.org/api/assets/3f3f02cc-04e2-4563-9c0a-9f472a893251/download/
  1210. - https://dandiarchive.s3.amazonaws.com/blobs/173/2dc/1732dcb7-c909-42d0-994d-07cab5dce826
  1211. dateModified: '2025-06-06T18:35:44.122212-04:00'
  1212. digest:
  1213. dandi:dandi-etag: cb11b126b703a5b688844ac01f4a11cf-8
  1214. dandi:sha2-256: 4f5e0e17551704b338ff2c78793455a9425a3d5e5d4477804123edf05af516c6
  1215. encodingFormat: application/x-nwb
  1216. id: dandiasset:3f3f02cc-04e2-4563-9c0a-9f472a893251
  1217. identifier: 3f3f02cc-04e2-4563-9c0a-9f472a893251
  1218. keywords:
  1219. - Glymphatic, Perivascular space, Periarterial space, Cerebrospinal fluid.
  1220. measurementTechnique: []
  1221. path: sub-r-23-09-25/sub-r-23-09-25_ses-r-23-09-25-zstack-art1-down-80min_image.nwb
  1222. schemaKey: Asset
  1223. schemaVersion: 0.6.10
  1224. variableMeasured: []
  1225. wasAttributedTo:
  1226. - age:
  1227. schemaKey: PropertyValue
  1228. unitText: ISO-8601 duration
  1229. value: P78D
  1230. valueReference:
  1231. schemaKey: PropertyValue
  1232. value: dandi:BirthReference
  1233. identifier: r-23-09-25
  1234. schemaKey: Participant
  1235. sex:
  1236. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1237. name: Male
  1238. schemaKey: SexType
  1239. species:
  1240. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  1241. name: Rattus norvegicus - Norway rat
  1242. schemaKey: SpeciesType
  1243. wasGeneratedBy:
  1244. - description: zstack-art1-down-80min
  1245. identifier: r-23-09-25_zstack-art1-down-80min
  1246. name: r-23-09-25_zstack-art1-down-80min
  1247. schemaKey: Session
  1248. startDate: '2023-09-25T14:06:00-05:00'
  1249. - description: Metadata generated by DANDI cli
  1250. endDate: '2025-06-06T18:35:44.122200-04:00'
  1251. id: urn:uuid:afae01e7-d77d-46ad-8d76-08e7e172175c
  1252. name: Metadata generation
  1253. schemaKey: Activity
  1254. startDate: '2025-06-06T18:35:44.112926-04:00'
  1255. wasAssociatedWith:
  1256. - identifier: RRID:SCR_019009
  1257. name: DANDI Command Line Interface
  1258. schemaKey: Software
  1259. url: https://github.com/dandi/dandi-cli
  1260. version: 0.69.3
  1261. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
  1262. access:
  1263. - schemaKey: AccessRequirements
  1264. status: dandi:OpenAccess
  1265. approach: []
  1266. blobDateModified: '2025-06-06T15:51:42.506749-04:00'
  1267. contentSize: 793676069
  1268. contentUrl:
  1269. - https://api.dandiarchive.org/api/assets/4d5e8d76-b20a-4785-b0c4-e432b005ad9d/download/
  1270. - https://dandiarchive.s3.amazonaws.com/blobs/df8/0d4/df80d42c-6b1e-4350-9108-30f998f19cb7
  1271. dateModified: '2025-06-06T18:36:17.125320-04:00'
  1272. digest:
  1273. dandi:dandi-etag: 4dc36291096f6d058ead5e923e0655d9-12
  1274. dandi:sha2-256: c36e8eb696bf1a971b55db4cf8a443d6089a328c18e7dc27a44529a866509d10
  1275. encodingFormat: application/x-nwb
  1276. id: dandiasset:4d5e8d76-b20a-4785-b0c4-e432b005ad9d
  1277. identifier: 4d5e8d76-b20a-4785-b0c4-e432b005ad9d
  1278. keywords:
  1279. - Glymphatic, Perivascular space, Periarterial space, Cerebrospinal fluid.
  1280. measurementTechnique: []
  1281. path: sub-r-23-09-25/sub-r-23-09-25_ses-r-23-09-25-zstack-art1-up-68min_image.nwb
  1282. schemaKey: Asset
  1283. schemaVersion: 0.6.10
  1284. variableMeasured: []
  1285. wasAttributedTo:
  1286. - age:
  1287. schemaKey: PropertyValue
  1288. unitText: ISO-8601 duration
  1289. value: P78D
  1290. valueReference:
  1291. schemaKey: PropertyValue
  1292. value: dandi:BirthReference
  1293. identifier: r-23-09-25
  1294. schemaKey: Participant
  1295. sex:
  1296. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1297. name: Male
  1298. schemaKey: SexType
  1299. species:
  1300. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  1301. name: Rattus norvegicus - Norway rat
  1302. schemaKey: SpeciesType
  1303. wasGeneratedBy:
  1304. - description: zstack-art1-up-68min
  1305. identifier: r-23-09-25_zstack-art1-up-68min
  1306. name: r-23-09-25_zstack-art1-up-68min
  1307. schemaKey: Session
  1308. startDate: '2023-09-25T13:53:33-05:00'
  1309. - description: Metadata generated by DANDI cli
  1310. endDate: '2025-06-06T18:36:17.125304-04:00'
  1311. id: urn:uuid:b7a28ad2-35b7-4015-8975-d30419df8e56
  1312. name: Metadata generation
  1313. schemaKey: Activity
  1314. startDate: '2025-06-06T18:36:17.115573-04:00'
  1315. wasAssociatedWith:
  1316. - identifier: RRID:SCR_019009
  1317. name: DANDI Command Line Interface
  1318. schemaKey: Software
  1319. url: https://github.com/dandi/dandi-cli
  1320. version: 0.69.3
  1321. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
  1322. access:
  1323. - schemaKey: AccessRequirements
  1324. status: dandi:OpenAccess
  1325. approach: []
  1326. blobDateModified: '2025-06-06T15:40:21.697262-04:00'
  1327. contentSize: 710307950
  1328. contentUrl:
  1329. - https://api.dandiarchive.org/api/assets/f7311718-0f10-4189-bdef-bde2db8ec95d/download/
  1330. - https://dandiarchive.s3.amazonaws.com/blobs/ea5/c59/ea5c5926-f5ae-4cfe-b9e0-024f82e085d3
  1331. dateModified: '2025-06-06T18:37:03.605694-04:00'
  1332. digest:
  1333. dandi:dandi-etag: 1964b0c3fa0a99e8670af67cd300a3d2-11
  1334. dandi:sha2-256: c1b6590d98100a1d120c27e44d96323c3d4c88536270ca83936b6098754de3ef
  1335. encodingFormat: application/x-nwb
  1336. id: dandiasset:f7311718-0f10-4189-bdef-bde2db8ec95d
  1337. identifier: f7311718-0f10-4189-bdef-bde2db8ec95d
  1338. keywords:
  1339. - Glymphatic, Perivascular space, Periarterial space, Cerebrospinal fluid.
  1340. measurementTechnique: []
  1341. path: sub-r-24-04-28/sub-r-24-04-28_ses-r-24-04-28-Zstack-art1-bright_image.nwb
  1342. schemaKey: Asset
  1343. schemaVersion: 0.6.10
  1344. variableMeasured: []
  1345. wasAttributedTo:
  1346. - age:
  1347. schemaKey: PropertyValue
  1348. unitText: ISO-8601 duration
  1349. value: P61D
  1350. valueReference:
  1351. schemaKey: PropertyValue
  1352. value: dandi:BirthReference
  1353. identifier: r-24-04-28
  1354. schemaKey: Participant
  1355. sex:
  1356. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  1357. name: Female
  1358. schemaKey: SexType
  1359. species:
  1360. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  1361. name: Rattus norvegicus - Norway rat
  1362. schemaKey: SpeciesType
  1363. wasGeneratedBy:
  1364. - description: Zstack-art1_bright
  1365. identifier: r-24-04-28_Zstack-art1_bright
  1366. name: r-24-04-28_Zstack-art1_bright
  1367. schemaKey: Session
  1368. startDate: '2024-04-28T19:19:22-05:00'
  1369. - description: Metadata generated by DANDI cli
  1370. endDate: '2025-06-06T18:37:03.605678-04:00'
  1371. id: urn:uuid:eb01bfa7-515a-44c5-92d4-3190f119997b
  1372. name: Metadata generation
  1373. schemaKey: Activity
  1374. startDate: '2025-06-06T18:37:03.596152-04:00'
  1375. wasAssociatedWith:
  1376. - identifier: RRID:SCR_019009
  1377. name: DANDI Command Line Interface
  1378. schemaKey: Software
  1379. url: https://github.com/dandi/dandi-cli
  1380. version: 0.69.3
  1381. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
  1382. access:
  1383. - schemaKey: AccessRequirements
  1384. status: dandi:OpenAccess
  1385. approach: []
  1386. blobDateModified: '2025-06-06T02:29:09.212076-04:00'
  1387. contentSize: 15422643211
  1388. contentUrl:
  1389. - https://api.dandiarchive.org/api/assets/16c88dee-3bbf-4fba-929e-e4a4ffa65f31/download/
  1390. - https://dandiarchive.s3.amazonaws.com/blobs/d56/828/d5682889-0e3c-447a-b114-3fd069c83744
  1391. dateModified: '2025-06-06T18:34:41.619658-04:00'
  1392. digest:
  1393. dandi:dandi-etag: 37a10334c8bc693cc07e43fa3a65f451-230
  1394. dandi:sha2-256: 328772bb19909bed8281648d0cf05acd2ab025d1b7432089237196ca573dc97c
  1395. encodingFormat: application/x-nwb
  1396. id: dandiasset:16c88dee-3bbf-4fba-929e-e4a4ffa65f31
  1397. identifier: 16c88dee-3bbf-4fba-929e-e4a4ffa65f31
  1398. keywords:
  1399. - Glymphatic, Perivascular space, Periarterial space, Cerebrospinal fluid.
  1400. measurementTechnique: []
  1401. path: sub-r-23-09-25/sub-r-23-09-25_ses-r-23-09-25-particles-art1-down-71min_image.nwb
  1402. schemaKey: Asset
  1403. schemaVersion: 0.6.10
  1404. variableMeasured: []
  1405. wasAttributedTo:
  1406. - age:
  1407. schemaKey: PropertyValue
  1408. unitText: ISO-8601 duration
  1409. value: P78D
  1410. valueReference:
  1411. schemaKey: PropertyValue
  1412. value: dandi:BirthReference
  1413. identifier: r-23-09-25
  1414. schemaKey: Participant
  1415. sex:
  1416. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1417. name: Male
  1418. schemaKey: SexType
  1419. species:
  1420. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  1421. name: Rattus norvegicus - Norway rat
  1422. schemaKey: SpeciesType
  1423. wasGeneratedBy:
  1424. - description: particles-art1-down-71min, ECG, respiration
  1425. identifier: r-23-09-25_particles-art1-down-71min
  1426. name: r-23-09-25_particles-art1-down-71min
  1427. schemaKey: Session
  1428. startDate: '2023-09-25T13:57:09-05:00'
  1429. - description: Metadata generated by DANDI cli
  1430. endDate: '2025-06-06T18:34:41.619635-04:00'
  1431. id: urn:uuid:c793ff98-3aa8-48a5-bfde-2a03298edf9d
  1432. name: Metadata generation
  1433. schemaKey: Activity
  1434. startDate: '2025-06-06T18:34:41.609906-04:00'
  1435. wasAssociatedWith:
  1436. - identifier: RRID:SCR_019009
  1437. name: DANDI Command Line Interface
  1438. schemaKey: Software
  1439. url: https://github.com/dandi/dandi-cli
  1440. version: 0.69.3
  1441. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
  1442. access:
  1443. - schemaKey: AccessRequirements
  1444. status: dandi:OpenAccess
  1445. approach: []
  1446. blobDateModified: '2025-06-06T02:10:57.569509-04:00'
  1447. contentSize: 15557697358
  1448. contentUrl:
  1449. - https://api.dandiarchive.org/api/assets/61e2cd10-42f5-42ec-b2e8-958decdb479a/download/
  1450. - https://dandiarchive.s3.amazonaws.com/blobs/bbc/4e6/bbc4e6fa-312a-4c9b-90ce-121b350d649b
  1451. dateModified: '2025-06-06T18:34:48.069529-04:00'
  1452. digest:
  1453. dandi:dandi-etag: 5b0c9dd9bf50eb833fc73443819c2936-232
  1454. dandi:sha2-256: 4df43aebfc7ac2475159b2959964476bc9d981e0feb49008a4ea88620830f44a
  1455. encodingFormat: application/x-nwb
  1456. id: dandiasset:61e2cd10-42f5-42ec-b2e8-958decdb479a
  1457. identifier: 61e2cd10-42f5-42ec-b2e8-958decdb479a
  1458. keywords:
  1459. - Glymphatic, Perivascular space, Periarterial space, Cerebrospinal fluid.
  1460. measurementTechnique: []
  1461. path: sub-r-23-09-25/sub-r-23-09-25_ses-r-23-09-25-particles-art1-up-58min_image.nwb
  1462. schemaKey: Asset
  1463. schemaVersion: 0.6.10
  1464. variableMeasured: []
  1465. wasAttributedTo:
  1466. - age:
  1467. schemaKey: PropertyValue
  1468. unitText: ISO-8601 duration
  1469. value: P78D
  1470. valueReference:
  1471. schemaKey: PropertyValue
  1472. value: dandi:BirthReference
  1473. identifier: r-23-09-25
  1474. schemaKey: Participant
  1475. sex:
  1476. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1477. name: Male
  1478. schemaKey: SexType
  1479. species:
  1480. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  1481. name: Rattus norvegicus - Norway rat
  1482. schemaKey: SpeciesType
  1483. wasGeneratedBy:
  1484. - description: particles-art1-up-58min, ECG, respiration
  1485. identifier: r-23-09-25_particles-art1-up-58min
  1486. name: r-23-09-25_particles-art1-up-58min
  1487. schemaKey: Session
  1488. startDate: '2023-09-25T13:43:50-05:00'
  1489. - description: Metadata generated by DANDI cli
  1490. endDate: '2025-06-06T18:34:48.069516-04:00'
  1491. id: urn:uuid:aa974694-823c-4aa8-be6d-76a082e0dee6
  1492. name: Metadata generation
  1493. schemaKey: Activity
  1494. startDate: '2025-06-06T18:34:48.060234-04:00'
  1495. wasAssociatedWith:
  1496. - identifier: RRID:SCR_019009
  1497. name: DANDI Command Line Interface
  1498. schemaKey: Software
  1499. url: https://github.com/dandi/dandi-cli
  1500. version: 0.69.3
  1501. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
  1502. access:
  1503. - schemaKey: AccessRequirements
  1504. status: dandi:OpenAccess
  1505. approach: []
  1506. blobDateModified: '2025-06-05T16:58:54.372998-04:00'
  1507. contentSize: 10803961309
  1508. contentUrl:
  1509. - https://api.dandiarchive.org/api/assets/f5f3f80b-4ec0-4977-b591-2edf5de11c9b/download/
  1510. - https://dandiarchive.s3.amazonaws.com/blobs/ad9/bb2/ad9bb29e-cfac-4967-9e53-332acb52b790
  1511. dateModified: '2025-06-06T18:38:38.023369-04:00'
  1512. digest:
  1513. dandi:dandi-etag: f60b52a0ba2ae0d9a2325140c1470b69-161
  1514. dandi:sha2-256: 7284b593db8db20e6bf6676efd286b84f3f7fcaeb75d7d5fbde692c40b3c2e79
  1515. encodingFormat: application/x-nwb
  1516. id: dandiasset:f5f3f80b-4ec0-4977-b591-2edf5de11c9b
  1517. identifier: f5f3f80b-4ec0-4977-b591-2edf5de11c9b
  1518. keywords:
  1519. - Glymphatic, Perivascular space, Periarterial space, Cerebrospinal fluid.
  1520. measurementTechnique: []
  1521. path: sub-r-24-05-05/sub-r-24-05-05_ses-r-24-05-05-Particles-001_image.nwb
  1522. schemaKey: Asset
  1523. schemaVersion: 0.6.10
  1524. variableMeasured: []
  1525. wasAttributedTo:
  1526. - age:
  1527. schemaKey: PropertyValue
  1528. unitText: ISO-8601 duration
  1529. value: P67D
  1530. valueReference:
  1531. schemaKey: PropertyValue
  1532. value: dandi:BirthReference
  1533. identifier: r-24-05-05
  1534. schemaKey: Participant
  1535. sex:
  1536. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  1537. name: Female
  1538. schemaKey: SexType
  1539. species:
  1540. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  1541. name: Rattus norvegicus - Norway rat
  1542. schemaKey: SpeciesType
  1543. wasGeneratedBy:
  1544. - description: Particles_001, ECG, respiration
  1545. identifier: r-24-05-05_Particles_001
  1546. name: r-24-05-05_Particles_001
  1547. schemaKey: Session
  1548. startDate: '2024-05-05T15:06:15-05:00'
  1549. - description: Metadata generated by DANDI cli
  1550. endDate: '2025-06-06T18:38:38.023356-04:00'
  1551. id: urn:uuid:657a3321-49c9-4bf5-b456-6d2d2442024d
  1552. name: Metadata generation
  1553. schemaKey: Activity
  1554. startDate: '2025-06-06T18:38:38.014015-04:00'
  1555. wasAssociatedWith:
  1556. - identifier: RRID:SCR_019009
  1557. name: DANDI Command Line Interface
  1558. schemaKey: Software
  1559. url: https://github.com/dandi/dandi-cli
  1560. version: 0.69.3
  1561. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
  1562. access:
  1563. - schemaKey: AccessRequirements
  1564. status: dandi:OpenAccess
  1565. approach: []
  1566. blobDateModified: '2025-06-06T01:23:31.874790-04:00'
  1567. contentSize: 21650096324
  1568. contentUrl:
  1569. - https://api.dandiarchive.org/api/assets/a3f13b0c-9cab-4d6d-b307-67882f888cde/download/
  1570. - https://dandiarchive.s3.amazonaws.com/blobs/ea0/82c/ea082cb6-efad-4d2e-86ab-e22d3aeefe24
  1571. dateModified: '2025-06-06T18:33:28.197866-04:00'
  1572. digest:
  1573. dandi:dandi-etag: c0fef5ea18816de5c612f0308a6641f8-323
  1574. dandi:sha2-256: 6e598e8884b3666415eb0873ac744a8ef06270cb5884d418406cd59e0904122b
  1575. encodingFormat: application/x-nwb
  1576. id: dandiasset:a3f13b0c-9cab-4d6d-b307-67882f888cde
  1577. identifier: a3f13b0c-9cab-4d6d-b307-67882f888cde
  1578. keywords:
  1579. - Glymphatic, Perivascular space, Periarterial space, Cerebrospinal fluid.
  1580. measurementTechnique: []
  1581. path: sub-r-23-09-05/sub-r-23-09-05_ses-r-23-09-05-particles-art2-down-79min_image.nwb
  1582. schemaKey: Asset
  1583. schemaVersion: 0.6.10
  1584. variableMeasured: []
  1585. wasAttributedTo:
  1586. - age:
  1587. schemaKey: PropertyValue
  1588. unitText: ISO-8601 duration
  1589. value: P58D
  1590. valueReference:
  1591. schemaKey: PropertyValue
  1592. value: dandi:BirthReference
  1593. identifier: r-23-09-05
  1594. schemaKey: Participant
  1595. sex:
  1596. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1597. name: Male
  1598. schemaKey: SexType
  1599. species:
  1600. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  1601. name: Rattus norvegicus - Norway rat
  1602. schemaKey: SpeciesType
  1603. wasGeneratedBy:
  1604. - description: particles-art2-down-79min, ECG, respiration
  1605. identifier: r-23-09-05_particles-art2-down-79min
  1606. name: r-23-09-05_particles-art2-down-79min
  1607. schemaKey: Session
  1608. startDate: '2023-09-05T13:42:52-05:00'
  1609. - description: Metadata generated by DANDI cli
  1610. endDate: '2025-06-06T18:33:28.197854-04:00'
  1611. id: urn:uuid:06efba05-0a2d-4e04-a1d3-3d90b3835f62
  1612. name: Metadata generation
  1613. schemaKey: Activity
  1614. startDate: '2025-06-06T18:33:28.188344-04:00'
  1615. wasAssociatedWith:
  1616. - identifier: RRID:SCR_019009
  1617. name: DANDI Command Line Interface
  1618. schemaKey: Software
  1619. url: https://github.com/dandi/dandi-cli
  1620. version: 0.69.3
  1621. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
  1622. access:
  1623. - schemaKey: AccessRequirements
  1624. status: dandi:OpenAccess
  1625. approach: []
  1626. blobDateModified: '2025-06-06T01:51:26.933118-04:00'
  1627. contentSize: 21951442640
  1628. contentUrl:
  1629. - https://api.dandiarchive.org/api/assets/1e43a0d6-8ed9-4776-9cba-fb661410c20c/download/
  1630. - https://dandiarchive.s3.amazonaws.com/blobs/021/395/02139512-e997-45ca-a907-a4c6d49556ed
  1631. dateModified: '2025-06-06T18:33:33.834166-04:00'
  1632. digest:
  1633. dandi:dandi-etag: c088d4eacd262bb3700ced88e94de450-328
  1634. dandi:sha2-256: 292b8eae25222daebb24d722c85d2fadf7f87b384300f5b5823fb5a3ede3a67b
  1635. encodingFormat: application/x-nwb
  1636. id: dandiasset:1e43a0d6-8ed9-4776-9cba-fb661410c20c
  1637. identifier: 1e43a0d6-8ed9-4776-9cba-fb661410c20c
  1638. keywords:
  1639. - Glymphatic, Perivascular space, Periarterial space, Cerebrospinal fluid.
  1640. measurementTechnique: []
  1641. path: sub-r-23-09-05/sub-r-23-09-05_ses-r-23-09-05-particles-art2-up-65min_image.nwb
  1642. schemaKey: Asset
  1643. schemaVersion: 0.6.10
  1644. variableMeasured: []
  1645. wasAttributedTo:
  1646. - age:
  1647. schemaKey: PropertyValue
  1648. unitText: ISO-8601 duration
  1649. value: P58D
  1650. valueReference:
  1651. schemaKey: PropertyValue
  1652. value: dandi:BirthReference
  1653. identifier: r-23-09-05
  1654. schemaKey: Participant
  1655. sex:
  1656. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1657. name: Male
  1658. schemaKey: SexType
  1659. species:
  1660. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  1661. name: Rattus norvegicus - Norway rat
  1662. schemaKey: SpeciesType
  1663. wasGeneratedBy:
  1664. - description: particles-art2-up-65min, ECG, respiration
  1665. identifier: r-23-09-05_particles-art2-up-65min
  1666. name: r-23-09-05_particles-art2-up-65min
  1667. schemaKey: Session
  1668. startDate: '2023-09-05T13:28:27-05:00'
  1669. - description: Metadata generated by DANDI cli
  1670. endDate: '2025-06-06T18:33:33.834147-04:00'
  1671. id: urn:uuid:16797aea-82d2-4ece-b14b-55e43e130888
  1672. name: Metadata generation
  1673. schemaKey: Activity
  1674. startDate: '2025-06-06T18:33:33.824586-04:00'
  1675. wasAssociatedWith:
  1676. - identifier: RRID:SCR_019009
  1677. name: DANDI Command Line Interface
  1678. schemaKey: Software
  1679. url: https://github.com/dandi/dandi-cli
  1680. version: 0.69.3
  1681. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
  1682. access:
  1683. - schemaKey: AccessRequirements
  1684. status: dandi:OpenAccess
  1685. approach: []
  1686. blobDateModified: '2025-06-05T17:13:55.520695-04:00'
  1687. contentSize: 11264858391
  1688. contentUrl:
  1689. - https://api.dandiarchive.org/api/assets/c7cb0c61-90a9-4da5-8c00-52db7c34452b/download/
  1690. - https://dandiarchive.s3.amazonaws.com/blobs/7d0/3eb/7d03ebeb-cd9b-41b9-bad7-201898b91da9
  1691. dateModified: '2025-06-06T18:52:36.305212-04:00'
  1692. digest:
  1693. dandi:dandi-etag: 32970d999db9f7e1c7a7d9dc3d783ea6-168
  1694. dandi:sha2-256: 571cf44e85d4f9a9bcd8c2bca2b6918b2bcd3ef7f4c2eb76dac2a391599fd3ed
  1695. encodingFormat: application/x-nwb
  1696. id: dandiasset:c7cb0c61-90a9-4da5-8c00-52db7c34452b
  1697. identifier: c7cb0c61-90a9-4da5-8c00-52db7c34452b
  1698. keywords:
  1699. - Glymphatic, Perivascular space, Periarterial space, Cerebrospinal fluid.
  1700. measurementTechnique: []
  1701. path: sub-r-24-05-05/sub-r-24-05-05_ses-r-24-05-05-Particles-002_image.nwb
  1702. schemaKey: Asset
  1703. schemaVersion: 0.6.10
  1704. variableMeasured: []
  1705. wasAttributedTo:
  1706. - age:
  1707. schemaKey: PropertyValue
  1708. unitText: ISO-8601 duration
  1709. value: P67D
  1710. valueReference:
  1711. schemaKey: PropertyValue
  1712. value: dandi:BirthReference
  1713. identifier: r-24-05-05
  1714. schemaKey: Participant
  1715. sex:
  1716. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  1717. name: Female
  1718. schemaKey: SexType
  1719. species:
  1720. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  1721. name: Rattus norvegicus - Norway rat
  1722. schemaKey: SpeciesType
  1723. wasGeneratedBy:
  1724. - description: Particles_002, ECG, respiration
  1725. identifier: r-24-05-05_Particles_002
  1726. name: r-24-05-05_Particles_002
  1727. schemaKey: Session
  1728. startDate: '2024-05-05T15:12:30-05:00'
  1729. - description: Metadata generated by DANDI cli
  1730. endDate: '2025-06-06T18:52:36.305200-04:00'
  1731. id: urn:uuid:73cff6f0-ded1-4fe7-b153-a1eb20e8ae49
  1732. name: Metadata generation
  1733. schemaKey: Activity
  1734. startDate: '2025-06-06T18:52:36.295726-04:00'
  1735. wasAssociatedWith:
  1736. - identifier: RRID:SCR_019009
  1737. name: DANDI Command Line Interface
  1738. schemaKey: Software
  1739. url: https://github.com/dandi/dandi-cli
  1740. version: 0.69.3
  1741. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
  1742. access:
  1743. - schemaKey: AccessRequirements
  1744. status: dandi:OpenAccess
  1745. approach: []
  1746. blobDateModified: '2025-06-06T15:40:52.092987-04:00'
  1747. contentSize: 390540191
  1748. contentUrl:
  1749. - https://api.dandiarchive.org/api/assets/c39d6807-3b0e-43bc-8bc7-7952bcf431ae/download/
  1750. - https://dandiarchive.s3.amazonaws.com/blobs/627/b33/627b3398-de7d-405f-ab44-658d8b63e13d
  1751. dateModified: '2025-06-06T18:56:32.584773-04:00'
  1752. digest:
  1753. dandi:dandi-etag: 844fe5f192fa7c30f14e0cd86ffb6bed-6
  1754. dandi:sha2-256: 395dcb25b3e2bab554665bea2125e89589a41469713c6d3bbfcb00c8121d5ced
  1755. encodingFormat: application/x-nwb
  1756. id: dandiasset:c39d6807-3b0e-43bc-8bc7-7952bcf431ae
  1757. identifier: c39d6807-3b0e-43bc-8bc7-7952bcf431ae
  1758. keywords:
  1759. - Glymphatic, Perivascular space, Periarterial space, Cerebrospinal fluid.
  1760. measurementTechnique: []
  1761. path: sub-r-24-05-05/sub-r-24-05-05_ses-r-24-05-05-Zstack-001_image.nwb
  1762. schemaKey: Asset
  1763. schemaVersion: 0.6.10
  1764. variableMeasured: []
  1765. wasAttributedTo:
  1766. - age:
  1767. schemaKey: PropertyValue
  1768. unitText: ISO-8601 duration
  1769. value: P67D
  1770. valueReference:
  1771. schemaKey: PropertyValue
  1772. value: dandi:BirthReference
  1773. identifier: r-24-05-05
  1774. schemaKey: Participant
  1775. sex:
  1776. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  1777. name: Female
  1778. schemaKey: SexType
  1779. species:
  1780. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  1781. name: Rattus norvegicus - Norway rat
  1782. schemaKey: SpeciesType
  1783. wasGeneratedBy:
  1784. - description: Zstack_001
  1785. identifier: r-24-05-05_Zstack_001
  1786. name: r-24-05-05_Zstack_001
  1787. schemaKey: Session
  1788. startDate: '2024-05-05T15:29:06-05:00'
  1789. - description: Metadata generated by DANDI cli
  1790. endDate: '2025-06-06T18:56:32.584761-04:00'
  1791. id: urn:uuid:0ddab40d-a402-4fe6-b58d-d9265cc30603
  1792. name: Metadata generation
  1793. schemaKey: Activity
  1794. startDate: '2025-06-06T18:56:32.575452-04:00'
  1795. wasAssociatedWith:
  1796. - identifier: RRID:SCR_019009
  1797. name: DANDI Command Line Interface
  1798. schemaKey: Software
  1799. url: https://github.com/dandi/dandi-cli
  1800. version: 0.69.3
  1801. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
  1802. access:
  1803. - schemaKey: AccessRequirements
  1804. status: dandi:OpenAccess
  1805. approach: []
  1806. blobDateModified: '2025-06-06T15:41:23.431745-04:00'
  1807. contentSize: 410032851
  1808. contentUrl:
  1809. - https://api.dandiarchive.org/api/assets/988813c9-a962-421a-8712-73114bf53700/download/
  1810. - https://dandiarchive.s3.amazonaws.com/blobs/bb8/f63/bb8f6346-7458-4b07-b0e7-fb5bc62b5d91
  1811. dateModified: '2025-06-06T18:56:55.097193-04:00'
  1812. digest:
  1813. dandi:dandi-etag: e759cc61e53fae734c03f879f30a890b-7
  1814. dandi:sha2-256: 4f9165eacc4342de3752a9a6affea425d9bc1b3af4d2fe28a11c8f9dbc6f0e02
  1815. encodingFormat: application/x-nwb
  1816. id: dandiasset:988813c9-a962-421a-8712-73114bf53700
  1817. identifier: 988813c9-a962-421a-8712-73114bf53700
  1818. keywords:
  1819. - Glymphatic, Perivascular space, Periarterial space, Cerebrospinal fluid.
  1820. measurementTechnique: []
  1821. path: sub-r-24-05-05/sub-r-24-05-05_ses-r-24-05-05-Zstack-002_image.nwb
  1822. schemaKey: Asset
  1823. schemaVersion: 0.6.10
  1824. variableMeasured: []
  1825. wasAttributedTo:
  1826. - age:
  1827. schemaKey: PropertyValue
  1828. unitText: ISO-8601 duration
  1829. value: P67D
  1830. valueReference:
  1831. schemaKey: PropertyValue
  1832. value: dandi:BirthReference
  1833. identifier: r-24-05-05
  1834. schemaKey: Participant
  1835. sex:
  1836. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  1837. name: Female
  1838. schemaKey: SexType
  1839. species:
  1840. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  1841. name: Rattus norvegicus - Norway rat
  1842. schemaKey: SpeciesType
  1843. wasGeneratedBy:
  1844. - description: Zstack_002
  1845. identifier: r-24-05-05_Zstack_002
  1846. name: r-24-05-05_Zstack_002
  1847. schemaKey: Session
  1848. startDate: '2024-05-05T15:26:30-05:00'
  1849. - description: Metadata generated by DANDI cli
  1850. endDate: '2025-06-06T18:56:55.097181-04:00'
  1851. id: urn:uuid:615f7c68-6750-46b7-9e39-e059c9e92c1a
  1852. name: Metadata generation
  1853. schemaKey: Activity
  1854. startDate: '2025-06-06T18:56:55.087899-04:00'
  1855. wasAssociatedWith:
  1856. - identifier: RRID:SCR_019009
  1857. name: DANDI Command Line Interface
  1858. schemaKey: Software
  1859. url: https://github.com/dandi/dandi-cli
  1860. version: 0.69.3
  1861. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
  1862. access:
  1863. - schemaKey: AccessRequirements
  1864. status: dandi:OpenAccess
  1865. approach: []
  1866. blobDateModified: '2025-06-06T15:20:14.063304-04:00'
  1867. contentSize: 615722341
  1868. contentUrl:
  1869. - https://api.dandiarchive.org/api/assets/b2d48396-aba2-46f4-a1a4-80a46d8f7df8/download/
  1870. - https://dandiarchive.s3.amazonaws.com/blobs/508/69c/50869c35-7e4a-4ff0-829e-5504235d5f6d
  1871. dateModified: '2025-06-06T18:57:35.216071-04:00'
  1872. digest:
  1873. dandi:dandi-etag: eeed39262fb5a8e52737f898110bc441-10
  1874. dandi:sha2-256: c57d1e57bdb3143a501f581918c2c4961a0ae2c1a093cae7ff1c6e82b41d4b3b
  1875. encodingFormat: application/x-nwb
  1876. id: dandiasset:b2d48396-aba2-46f4-a1a4-80a46d8f7df8
  1877. identifier: b2d48396-aba2-46f4-a1a4-80a46d8f7df8
  1878. keywords:
  1879. - Glymphatic, Perivascular space, Periarterial space, Cerebrospinal fluid.
  1880. measurementTechnique: []
  1881. path: sub-r-24-07-31/sub-r-24-07-31_ses-r-24-07-31-Zstack-downstream2_image.nwb
  1882. schemaKey: Asset
  1883. schemaVersion: 0.6.10
  1884. variableMeasured: []
  1885. wasAttributedTo:
  1886. - age:
  1887. schemaKey: PropertyValue
  1888. unitText: ISO-8601 duration
  1889. value: P70D
  1890. valueReference:
  1891. schemaKey: PropertyValue
  1892. value: dandi:BirthReference
  1893. identifier: r-24-07-31
  1894. schemaKey: Participant
  1895. sex:
  1896. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1897. name: Male
  1898. schemaKey: SexType
  1899. species:
  1900. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  1901. name: Rattus norvegicus - Norway rat
  1902. schemaKey: SpeciesType
  1903. wasGeneratedBy:
  1904. - description: Zstack-downstream2
  1905. identifier: r-24-07-31_Zstack-downstream2
  1906. name: r-24-07-31_Zstack-downstream2
  1907. schemaKey: Session
  1908. startDate: '2024-07-31T15:42:56-05:00'
  1909. - description: Metadata generated by DANDI cli
  1910. endDate: '2025-06-06T18:57:35.216058-04:00'
  1911. id: urn:uuid:9224b1b4-54cc-4f4a-91f2-8c409218d60e
  1912. name: Metadata generation
  1913. schemaKey: Activity
  1914. startDate: '2025-06-06T18:57:35.206699-04:00'
  1915. wasAssociatedWith:
  1916. - identifier: RRID:SCR_019009
  1917. name: DANDI Command Line Interface
  1918. schemaKey: Software
  1919. url: https://github.com/dandi/dandi-cli
  1920. version: 0.69.3
  1921. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
  1922. access:
  1923. - schemaKey: AccessRequirements
  1924. status: dandi:OpenAccess
  1925. approach: []
  1926. blobDateModified: '2025-06-06T15:31:37.355731-04:00'
  1927. contentSize: 612988776
  1928. contentUrl:
  1929. - https://api.dandiarchive.org/api/assets/20fa0502-cb2e-45fb-967f-fabf819878f8/download/
  1930. - https://dandiarchive.s3.amazonaws.com/blobs/32e/4bf/32e4bf4d-065a-4714-b382-c31d161a2f9b
  1931. dateModified: '2025-06-06T18:58:15.145105-04:00'
  1932. digest:
  1933. dandi:dandi-etag: 0fc4be772c5b4cb7596452a93777954b-10
  1934. dandi:sha2-256: e72cd0337eda0579bf357787fd6f24ead794a2ab0c2e9cbf6188da88be582421
  1935. encodingFormat: application/x-nwb
  1936. id: dandiasset:20fa0502-cb2e-45fb-967f-fabf819878f8
  1937. identifier: 20fa0502-cb2e-45fb-967f-fabf819878f8
  1938. keywords:
  1939. - Glymphatic, Perivascular space, Periarterial space, Cerebrospinal fluid.
  1940. measurementTechnique: []
  1941. path: sub-r-24-07-31/sub-r-24-07-31_ses-r-24-07-31-Zstack-upstream_image.nwb
  1942. schemaKey: Asset
  1943. schemaVersion: 0.6.10
  1944. variableMeasured: []
  1945. wasAttributedTo:
  1946. - age:
  1947. schemaKey: PropertyValue
  1948. unitText: ISO-8601 duration
  1949. value: P70D
  1950. valueReference:
  1951. schemaKey: PropertyValue
  1952. value: dandi:BirthReference
  1953. identifier: r-24-07-31
  1954. schemaKey: Participant
  1955. sex:
  1956. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1957. name: Male
  1958. schemaKey: SexType
  1959. species:
  1960. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  1961. name: Rattus norvegicus - Norway rat
  1962. schemaKey: SpeciesType
  1963. wasGeneratedBy:
  1964. - description: Zstack-upstream
  1965. identifier: r-24-07-31_Zstack-upstream
  1966. name: r-24-07-31_Zstack-upstream
  1967. schemaKey: Session
  1968. startDate: '2024-07-31T15:38:00-05:00'
  1969. - description: Metadata generated by DANDI cli
  1970. endDate: '2025-06-06T18:58:15.145093-04:00'
  1971. id: urn:uuid:97aaa490-be21-40fe-8162-df71d80585ce
  1972. name: Metadata generation
  1973. schemaKey: Activity
  1974. startDate: '2025-06-06T18:58:15.135836-04:00'
  1975. wasAssociatedWith:
  1976. - identifier: RRID:SCR_019009
  1977. name: DANDI Command Line Interface
  1978. schemaKey: Software
  1979. url: https://github.com/dandi/dandi-cli
  1980. version: 0.69.3
  1981. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
  1982. access:
  1983. - schemaKey: AccessRequirements
  1984. status: dandi:OpenAccess
  1985. approach: []
  1986. blobDateModified: '2025-06-05T17:28:26.247559-04:00'
  1987. contentSize: 12464788178
  1988. contentUrl:
  1989. - https://api.dandiarchive.org/api/assets/1bff2151-eb42-4483-979c-0761376368ee/download/
  1990. - https://dandiarchive.s3.amazonaws.com/blobs/4a3/964/4a3964c5-2d9e-4fe2-a835-4f82142d0425
  1991. dateModified: '2025-06-06T18:53:22.184941-04:00'
  1992. digest:
  1993. dandi:dandi-etag: fa3a50fdc1e5230c6738397711496df9-186
  1994. dandi:sha2-256: 5a426438aa7eb60b052b056e3a54dc4fad8b8dedaafb3dc7fe7ee6aec495e87d
  1995. encodingFormat: application/x-nwb
  1996. id: dandiasset:1bff2151-eb42-4483-979c-0761376368ee
  1997. identifier: 1bff2151-eb42-4483-979c-0761376368ee
  1998. keywords:
  1999. - Glymphatic, Perivascular space, Periarterial space, Cerebrospinal fluid.
  2000. measurementTechnique: []
  2001. path: sub-r-24-05-05/sub-r-24-05-05_ses-r-24-05-05-Particles-later-001_image.nwb
  2002. schemaKey: Asset
  2003. schemaVersion: 0.6.10
  2004. variableMeasured: []
  2005. wasAttributedTo:
  2006. - age:
  2007. schemaKey: PropertyValue
  2008. unitText: ISO-8601 duration
  2009. value: P67D
  2010. valueReference:
  2011. schemaKey: PropertyValue
  2012. value: dandi:BirthReference
  2013. identifier: r-24-05-05
  2014. schemaKey: Participant
  2015. sex:
  2016. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  2017. name: Female
  2018. schemaKey: SexType
  2019. species:
  2020. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  2021. name: Rattus norvegicus - Norway rat
  2022. schemaKey: SpeciesType
  2023. wasGeneratedBy:
  2024. - description: Particles_later_001, ECG, respiration
  2025. identifier: r-24-05-05_Particles_later_001
  2026. name: r-24-05-05_Particles_later_001
  2027. schemaKey: Session
  2028. startDate: '2024-05-05T15:54:45-05:00'
  2029. - description: Metadata generated by DANDI cli
  2030. endDate: '2025-06-06T18:53:22.184907-04:00'
  2031. id: urn:uuid:55dbe265-f071-40ab-9d99-1aea5829e1f5
  2032. name: Metadata generation
  2033. schemaKey: Activity
  2034. startDate: '2025-06-06T18:53:22.175110-04:00'
  2035. wasAssociatedWith:
  2036. - identifier: RRID:SCR_019009
  2037. name: DANDI Command Line Interface
  2038. schemaKey: Software
  2039. url: https://github.com/dandi/dandi-cli
  2040. version: 0.69.3
  2041. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
  2042. access:
  2043. - schemaKey: AccessRequirements
  2044. status: dandi:OpenAccess
  2045. approach: []
  2046. blobDateModified: '2025-06-05T15:53:02.501347-04:00'
  2047. contentSize: 11085842017
  2048. contentUrl:
  2049. - https://api.dandiarchive.org/api/assets/3f332a57-f961-45ee-91da-cedb2a6c6191/download/
  2050. - https://dandiarchive.s3.amazonaws.com/blobs/b9c/e53/b9ce53f7-27f8-42ff-b3dc-3eb0eb1166fb
  2051. dateModified: '2025-06-06T18:53:57.615812-04:00'
  2052. digest:
  2053. dandi:dandi-etag: 933a946a2b1e668592d19aa4f5687baa-166
  2054. dandi:sha2-256: 266dcb86e234e58c4e6f1e21a673d0af9a25a48954dfc4763fea0824d9e8cd71
  2055. encodingFormat: application/x-nwb
  2056. id: dandiasset:3f332a57-f961-45ee-91da-cedb2a6c6191
  2057. identifier: 3f332a57-f961-45ee-91da-cedb2a6c6191
  2058. keywords:
  2059. - Glymphatic, Perivascular space, Periarterial space, Cerebrospinal fluid.
  2060. measurementTechnique: []
  2061. path: sub-r-24-05-05/sub-r-24-05-05_ses-r-24-05-05-Particles_image.nwb
  2062. schemaKey: Asset
  2063. schemaVersion: 0.6.10
  2064. variableMeasured: []
  2065. wasAttributedTo:
  2066. - age:
  2067. schemaKey: PropertyValue
  2068. unitText: ISO-8601 duration
  2069. value: P67D
  2070. valueReference:
  2071. schemaKey: PropertyValue
  2072. value: dandi:BirthReference
  2073. identifier: r-24-05-05
  2074. schemaKey: Participant
  2075. sex:
  2076. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  2077. name: Female
  2078. schemaKey: SexType
  2079. species:
  2080. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  2081. name: Rattus norvegicus - Norway rat
  2082. schemaKey: SpeciesType
  2083. wasGeneratedBy:
  2084. - description: Particles, ECG, respiration
  2085. identifier: r-24-05-05_Particles
  2086. name: r-24-05-05_Particles
  2087. schemaKey: Session
  2088. startDate: '2024-05-05T14:59:36-05:00'
  2089. - description: Metadata generated by DANDI cli
  2090. endDate: '2025-06-06T18:53:57.615796-04:00'
  2091. id: urn:uuid:ade6386b-f894-4b92-875e-f3851c47c950
  2092. name: Metadata generation
  2093. schemaKey: Activity
  2094. startDate: '2025-06-06T18:53:57.605981-04:00'
  2095. wasAssociatedWith:
  2096. - identifier: RRID:SCR_019009
  2097. name: DANDI Command Line Interface
  2098. schemaKey: Software
  2099. url: https://github.com/dandi/dandi-cli
  2100. version: 0.69.3
  2101. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
  2102. access:
  2103. - schemaKey: AccessRequirements
  2104. status: dandi:OpenAccess
  2105. approach: []
  2106. blobDateModified: '2025-06-05T17:42:17.723354-04:00'
  2107. contentSize: 12209419478
  2108. contentUrl:
  2109. - https://api.dandiarchive.org/api/assets/7158dcc2-c054-4161-b40d-e2895bb97e98/download/
  2110. - https://dandiarchive.s3.amazonaws.com/blobs/232/9a6/2329a60f-f4e3-4554-bb56-d20e5613afbd
  2111. dateModified: '2025-06-06T18:54:04.586880-04:00'
  2112. digest:
  2113. dandi:dandi-etag: f965e96184985884c22846cdf9b76524-182
  2114. dandi:sha2-256: 6bea5fbd258e553ef04ed26597c51e70739556c041a79b13d1682a9ee3355682
  2115. encodingFormat: application/x-nwb
  2116. id: dandiasset:7158dcc2-c054-4161-b40d-e2895bb97e98
  2117. identifier: 7158dcc2-c054-4161-b40d-e2895bb97e98
  2118. keywords:
  2119. - Glymphatic, Perivascular space, Periarterial space, Cerebrospinal fluid.
  2120. measurementTechnique: []
  2121. path: sub-r-24-05-05/sub-r-24-05-05_ses-r-24-05-05-Particles-later_image.nwb
  2122. schemaKey: Asset
  2123. schemaVersion: 0.6.10
  2124. variableMeasured: []
  2125. wasAttributedTo:
  2126. - age:
  2127. schemaKey: PropertyValue
  2128. unitText: ISO-8601 duration
  2129. value: P67D
  2130. valueReference:
  2131. schemaKey: PropertyValue
  2132. value: dandi:BirthReference
  2133. identifier: r-24-05-05
  2134. schemaKey: Participant
  2135. sex:
  2136. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  2137. name: Female
  2138. schemaKey: SexType
  2139. species:
  2140. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  2141. name: Rattus norvegicus - Norway rat
  2142. schemaKey: SpeciesType
  2143. wasGeneratedBy:
  2144. - description: Particles_later, ECG, respiration
  2145. identifier: r-24-05-05_Particles_later
  2146. name: r-24-05-05_Particles_later
  2147. schemaKey: Session
  2148. startDate: '2024-05-05T15:33:28-05:00'
  2149. - description: Metadata generated by DANDI cli
  2150. endDate: '2025-06-06T18:54:04.586868-04:00'
  2151. id: urn:uuid:3119331d-ef3e-4e69-938b-d78af4624015
  2152. name: Metadata generation
  2153. schemaKey: Activity
  2154. startDate: '2025-06-06T18:54:04.577544-04:00'
  2155. wasAssociatedWith:
  2156. - identifier: RRID:SCR_019009
  2157. name: DANDI Command Line Interface
  2158. schemaKey: Software
  2159. url: https://github.com/dandi/dandi-cli
  2160. version: 0.69.3
  2161. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
  2162. access:
  2163. - schemaKey: AccessRequirements
  2164. status: dandi:OpenAccess
  2165. approach: []
  2166. blobDateModified: '2025-06-05T17:56:04.929516-04:00'
  2167. contentSize: 12726037589
  2168. contentUrl:
  2169. - https://api.dandiarchive.org/api/assets/68c393a6-cf91-4119-9734-3a38f9265fe9/download/
  2170. - https://dandiarchive.s3.amazonaws.com/blobs/10e/7fb/10e7fb59-bcce-49b0-9fba-114e0271f597
  2171. dateModified: '2025-06-06T18:54:02.002074-04:00'
  2172. digest:
  2173. dandi:dandi-etag: 9ca8e00950851bcec9600af9698dd7ab-190
  2174. dandi:sha2-256: 828cac52d032ea1fc05551ac423cfa3f40c83f441fbcd4ac464bd2e41fd6bddc
  2175. encodingFormat: application/x-nwb
  2176. id: dandiasset:68c393a6-cf91-4119-9734-3a38f9265fe9
  2177. identifier: 68c393a6-cf91-4119-9734-3a38f9265fe9
  2178. keywords:
  2179. - Glymphatic, Perivascular space, Periarterial space, Cerebrospinal fluid.
  2180. measurementTechnique: []
  2181. path: sub-r-24-05-05/sub-r-24-05-05_ses-r-24-05-05-Particles-later-002_image.nwb
  2182. schemaKey: Asset
  2183. schemaVersion: 0.6.10
  2184. variableMeasured: []
  2185. wasAttributedTo:
  2186. - age:
  2187. schemaKey: PropertyValue
  2188. unitText: ISO-8601 duration
  2189. value: P67D
  2190. valueReference:
  2191. schemaKey: PropertyValue
  2192. value: dandi:BirthReference
  2193. identifier: r-24-05-05
  2194. schemaKey: Participant
  2195. sex:
  2196. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  2197. name: Female
  2198. schemaKey: SexType
  2199. species:
  2200. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  2201. name: Rattus norvegicus - Norway rat
  2202. schemaKey: SpeciesType
  2203. wasGeneratedBy:
  2204. - description: Particles_later_002, ECG, respiration
  2205. identifier: r-24-05-05_Particles_later_002
  2206. name: r-24-05-05_Particles_later_002
  2207. schemaKey: Session
  2208. startDate: '2024-05-05T16:01:02-05:00'
  2209. - description: Metadata generated by DANDI cli
  2210. endDate: '2025-06-06T18:54:02.002063-04:00'
  2211. id: urn:uuid:089835b1-a704-450c-a394-e17ed112f3f8
  2212. name: Metadata generation
  2213. schemaKey: Activity
  2214. startDate: '2025-06-06T18:54:02.000974-04:00'
  2215. wasAssociatedWith:
  2216. - identifier: RRID:SCR_019009
  2217. name: DANDI Command Line Interface
  2218. schemaKey: Software
  2219. url: https://github.com/dandi/dandi-cli
  2220. version: 0.69.3
  2221. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
  2222. access:
  2223. - schemaKey: AccessRequirements
  2224. status: dandi:OpenAccess
  2225. approach: []
  2226. blobDateModified: '2025-06-05T18:24:13.580819-04:00'
  2227. contentSize: 11410546754
  2228. contentUrl:
  2229. - https://api.dandiarchive.org/api/assets/39cb90d2-da00-4b0b-bf6c-96ad0700ab8f/download/
  2230. - https://dandiarchive.s3.amazonaws.com/blobs/f75/481/f75481c6-2adb-4fde-a08c-c68653a5da0b
  2231. dateModified: '2025-06-06T18:59:47.126356-04:00'
  2232. digest:
  2233. dandi:dandi-etag: 5880d133500bdb4ce65c0e85fed56d48-171
  2234. dandi:sha2-256: f31889b83dd5048fd31fc2f1d12c8aff34ec2b10bda97be4dda0fbb4749e2a93
  2235. encodingFormat: application/x-nwb
  2236. id: dandiasset:39cb90d2-da00-4b0b-bf6c-96ad0700ab8f
  2237. identifier: 39cb90d2-da00-4b0b-bf6c-96ad0700ab8f
  2238. keywords:
  2239. - Glymphatic, Perivascular space, Periarterial space, Cerebrospinal fluid.
  2240. measurementTechnique: []
  2241. path: sub-r-24-07-31/sub-r-24-07-31_ses-r-24-07-31-particles-downstream-001_image.nwb
  2242. schemaKey: Asset
  2243. schemaVersion: 0.6.10
  2244. variableMeasured: []
  2245. wasAttributedTo:
  2246. - age:
  2247. schemaKey: PropertyValue
  2248. unitText: ISO-8601 duration
  2249. value: P70D
  2250. valueReference:
  2251. schemaKey: PropertyValue
  2252. value: dandi:BirthReference
  2253. identifier: r-24-07-31
  2254. schemaKey: Participant
  2255. sex:
  2256. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  2257. name: Male
  2258. schemaKey: SexType
  2259. species:
  2260. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  2261. name: Rattus norvegicus - Norway rat
  2262. schemaKey: SpeciesType
  2263. wasGeneratedBy:
  2264. - description: particles_downstream_001, ECG, respiration
  2265. identifier: r-24-07-31_particles_downstream_001
  2266. name: r-24-07-31_particles_downstream_001
  2267. schemaKey: Session
  2268. startDate: '2024-07-31T15:21:34-05:00'
  2269. - description: Metadata generated by DANDI cli
  2270. endDate: '2025-06-06T18:59:47.126342-04:00'
  2271. id: urn:uuid:1058b5c7-4292-47e2-8fa8-266a07b4df1d
  2272. name: Metadata generation
  2273. schemaKey: Activity
  2274. startDate: '2025-06-06T18:59:47.116873-04:00'
  2275. wasAssociatedWith:
  2276. - identifier: RRID:SCR_019009
  2277. name: DANDI Command Line Interface
  2278. schemaKey: Software
  2279. url: https://github.com/dandi/dandi-cli
  2280. version: 0.69.3
  2281. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
  2282. access:
  2283. - schemaKey: AccessRequirements
  2284. status: dandi:OpenAccess
  2285. approach: []
  2286. blobDateModified: '2025-06-05T18:10:50.283183-04:00'
  2287. contentSize: 11387947890
  2288. contentUrl:
  2289. - https://api.dandiarchive.org/api/assets/dfc0b391-5eae-40fa-b737-3d311b8cd46f/download/
  2290. - https://dandiarchive.s3.amazonaws.com/blobs/965/de7/965de725-93ab-4f5e-9431-00af10838a32
  2291. dateModified: '2025-06-06T19:01:09.114175-04:00'
  2292. digest:
  2293. dandi:dandi-etag: a4eb4edb9b11732086d138e6254e22a4-170
  2294. dandi:sha2-256: 5b6413be657f4b0ca783380f600f70682af3c86baa949080abde6e2d65448d2e
  2295. encodingFormat: application/x-nwb
  2296. id: dandiasset:dfc0b391-5eae-40fa-b737-3d311b8cd46f
  2297. identifier: dfc0b391-5eae-40fa-b737-3d311b8cd46f
  2298. keywords:
  2299. - Glymphatic, Perivascular space, Periarterial space, Cerebrospinal fluid.
  2300. measurementTechnique: []
  2301. path: sub-r-24-07-31/sub-r-24-07-31_ses-r-24-07-31-particles-downstream_image.nwb
  2302. schemaKey: Asset
  2303. schemaVersion: 0.6.10
  2304. variableMeasured: []
  2305. wasAttributedTo:
  2306. - age:
  2307. schemaKey: PropertyValue
  2308. unitText: ISO-8601 duration
  2309. value: P70D
  2310. valueReference:
  2311. schemaKey: PropertyValue
  2312. value: dandi:BirthReference
  2313. identifier: r-24-07-31
  2314. schemaKey: Participant
  2315. sex:
  2316. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  2317. name: Male
  2318. schemaKey: SexType
  2319. species:
  2320. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  2321. name: Rattus norvegicus - Norway rat
  2322. schemaKey: SpeciesType
  2323. wasGeneratedBy:
  2324. - description: particles_downstream, ECG, respiration
  2325. identifier: r-24-07-31_particles_downstream
  2326. name: r-24-07-31_particles_downstream
  2327. schemaKey: Session
  2328. startDate: '2024-07-31T15:08:32-05:00'
  2329. - description: Metadata generated by DANDI cli
  2330. endDate: '2025-06-06T19:01:09.114163-04:00'
  2331. id: urn:uuid:f3557c9f-2a5e-4997-9cfa-67dcbfc5a467
  2332. name: Metadata generation
  2333. schemaKey: Activity
  2334. startDate: '2025-06-06T19:01:09.104746-04:00'
  2335. wasAssociatedWith:
  2336. - identifier: RRID:SCR_019009
  2337. name: DANDI Command Line Interface
  2338. schemaKey: Software
  2339. url: https://github.com/dandi/dandi-cli
  2340. version: 0.69.3
  2341. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
  2342. access:
  2343. - schemaKey: AccessRequirements
  2344. status: dandi:OpenAccess
  2345. approach: []
  2346. blobDateModified: '2025-06-06T15:32:20.531765-04:00'
  2347. contentSize: 604202780
  2348. contentUrl:
  2349. - https://api.dandiarchive.org/api/assets/62eb869f-05d9-4154-bd0e-1c4ae3ba77fb/download/
  2350. - https://dandiarchive.s3.amazonaws.com/blobs/c8b/b9e/c8bb9efd-7997-4552-ac2c-6c8eea887f0a
  2351. dateModified: '2025-06-06T19:05:02.862407-04:00'
  2352. digest:
  2353. dandi:dandi-etag: 21ca523f2c08b261c0b0d1656ef30292-10
  2354. dandi:sha2-256: 61828a382517e4951d632a36da54e5a1f394943130ef81e4bc8b4fd084c7bdf5
  2355. encodingFormat: application/x-nwb
  2356. id: dandiasset:62eb869f-05d9-4154-bd0e-1c4ae3ba77fb
  2357. identifier: 62eb869f-05d9-4154-bd0e-1c4ae3ba77fb
  2358. keywords:
  2359. - Glymphatic, Perivascular space, Periarterial space, Cerebrospinal fluid.
  2360. measurementTechnique: []
  2361. path: sub-r-24-07-31-rat2/sub-r-24-07-31-rat2_ses-r-24-07-31-rat2-zstack-downstream-bifu_image.nwb
  2362. schemaKey: Asset
  2363. schemaVersion: 0.6.10
  2364. variableMeasured: []
  2365. wasAttributedTo:
  2366. - age:
  2367. schemaKey: PropertyValue
  2368. unitText: ISO-8601 duration
  2369. value: P70D
  2370. valueReference:
  2371. schemaKey: PropertyValue
  2372. value: dandi:BirthReference
  2373. identifier: r-24-07-31_rat2
  2374. schemaKey: Participant
  2375. sex:
  2376. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  2377. name: Male
  2378. schemaKey: SexType
  2379. species:
  2380. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  2381. name: Rattus norvegicus - Norway rat
  2382. schemaKey: SpeciesType
  2383. wasGeneratedBy:
  2384. - description: zstack-downstream-bifu
  2385. identifier: r-24-07-31_rat2_zstack-downstream-bifu
  2386. name: r-24-07-31_rat2_zstack-downstream-bifu
  2387. schemaKey: Session
  2388. startDate: '2024-07-31T20:18:12-05:00'
  2389. - description: Metadata generated by DANDI cli
  2390. endDate: '2025-06-06T19:05:02.862396-04:00'
  2391. id: urn:uuid:906a8f03-5daf-4cab-897d-802e7d3ef82f
  2392. name: Metadata generation
  2393. schemaKey: Activity
  2394. startDate: '2025-06-06T19:05:02.853110-04:00'
  2395. wasAssociatedWith:
  2396. - identifier: RRID:SCR_019009
  2397. name: DANDI Command Line Interface
  2398. schemaKey: Software
  2399. url: https://github.com/dandi/dandi-cli
  2400. version: 0.69.3
  2401. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
  2402. access:
  2403. - schemaKey: AccessRequirements
  2404. status: dandi:OpenAccess
  2405. approach: []
  2406. blobDateModified: '2025-06-06T15:33:04.133808-04:00'
  2407. contentSize: 624016945
  2408. contentUrl:
  2409. - https://api.dandiarchive.org/api/assets/9ca456ce-8135-49e1-95ae-4a482a145b73/download/
  2410. - https://dandiarchive.s3.amazonaws.com/blobs/81d/fe9/81dfe93c-89c7-4f14-a342-96c0c011a765
  2411. dateModified: '2025-06-06T19:05:37.821152-04:00'
  2412. digest:
  2413. dandi:dandi-etag: 30375000fec82bbc0e9b119166b02df2-10
  2414. dandi:sha2-256: e309213e9e76145043972fc52695cbb7467e95d53b769e63b2d899dd9d8e458a
  2415. encodingFormat: application/x-nwb
  2416. id: dandiasset:9ca456ce-8135-49e1-95ae-4a482a145b73
  2417. identifier: 9ca456ce-8135-49e1-95ae-4a482a145b73
  2418. keywords:
  2419. - Glymphatic, Perivascular space, Periarterial space, Cerebrospinal fluid.
  2420. measurementTechnique: []
  2421. path: sub-r-24-07-31-rat2/sub-r-24-07-31-rat2_ses-r-24-07-31-rat2-zstack-upstream_image.nwb
  2422. schemaKey: Asset
  2423. schemaVersion: 0.6.10
  2424. variableMeasured: []
  2425. wasAttributedTo:
  2426. - age:
  2427. schemaKey: PropertyValue
  2428. unitText: ISO-8601 duration
  2429. value: P70D
  2430. valueReference:
  2431. schemaKey: PropertyValue
  2432. value: dandi:BirthReference
  2433. identifier: r-24-07-31_rat2
  2434. schemaKey: Participant
  2435. sex:
  2436. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  2437. name: Male
  2438. schemaKey: SexType
  2439. species:
  2440. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  2441. name: Rattus norvegicus - Norway rat
  2442. schemaKey: SpeciesType
  2443. wasGeneratedBy:
  2444. - description: zstack-upstream
  2445. identifier: r-24-07-31_rat2_zstack-upstream
  2446. name: r-24-07-31_rat2_zstack-upstream
  2447. schemaKey: Session
  2448. startDate: '2024-07-31T20:16:17-05:00'
  2449. - description: Metadata generated by DANDI cli
  2450. endDate: '2025-06-06T19:05:37.821140-04:00'
  2451. id: urn:uuid:05fd3589-da38-4ac5-87ca-e288e40adb48
  2452. name: Metadata generation
  2453. schemaKey: Activity
  2454. startDate: '2025-06-06T19:05:37.811615-04:00'
  2455. wasAssociatedWith:
  2456. - identifier: RRID:SCR_019009
  2457. name: DANDI Command Line Interface
  2458. schemaKey: Software
  2459. url: https://github.com/dandi/dandi-cli
  2460. version: 0.69.3
  2461. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
  2462. access:
  2463. - schemaKey: AccessRequirements
  2464. status: dandi:OpenAccess
  2465. approach: []
  2466. blobDateModified: '2025-06-05T18:48:48.981776-04:00'
  2467. contentSize: 6265964331
  2468. contentUrl:
  2469. - https://api.dandiarchive.org/api/assets/5d4dc587-084f-44fa-9864-1ec24716399f/download/
  2470. - https://dandiarchive.s3.amazonaws.com/blobs/242/a9d/242a9dcf-b23c-47b2-8e5d-585ad7b9cfbf
  2471. dateModified: '2025-06-06T19:07:42.248774-04:00'
  2472. digest:
  2473. dandi:dandi-etag: d3b567561c773abd5f959e670358cebd-94
  2474. dandi:sha2-256: e753cea2a2e9b9110347d26c55b70e263adccb9d719c5664071bd069ecee739b
  2475. encodingFormat: application/x-nwb
  2476. id: dandiasset:5d4dc587-084f-44fa-9864-1ec24716399f
  2477. identifier: 5d4dc587-084f-44fa-9864-1ec24716399f
  2478. keywords:
  2479. - Glymphatic, Perivascular space, Periarterial space, Cerebrospinal fluid.
  2480. measurementTechnique: []
  2481. path: sub-r-24-07-31-rat2/sub-r-24-07-31-rat2_ses-r-24-07-31-rat2-particles-downstream_image.nwb
  2482. schemaKey: Asset
  2483. schemaVersion: 0.6.10
  2484. variableMeasured: []
  2485. wasAttributedTo:
  2486. - age:
  2487. schemaKey: PropertyValue
  2488. unitText: ISO-8601 duration
  2489. value: P70D
  2490. valueReference:
  2491. schemaKey: PropertyValue
  2492. value: dandi:BirthReference
  2493. identifier: r-24-07-31_rat2
  2494. schemaKey: Participant
  2495. sex:
  2496. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  2497. name: Male
  2498. schemaKey: SexType
  2499. species:
  2500. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  2501. name: Rattus norvegicus - Norway rat
  2502. schemaKey: SpeciesType
  2503. wasGeneratedBy:
  2504. - description: particles-downstream, ECG, respiration
  2505. identifier: r-24-07-31_rat2_particles-downstream
  2506. name: r-24-07-31_rat2_particles-downstream
  2507. schemaKey: Session
  2508. startDate: '2024-07-31T20:09:03-05:00'
  2509. - description: Metadata generated by DANDI cli
  2510. endDate: '2025-06-06T19:07:42.248755-04:00'
  2511. id: urn:uuid:618cfc19-7a73-457d-9a68-3083a5ccb306
  2512. name: Metadata generation
  2513. schemaKey: Activity
  2514. startDate: '2025-06-06T19:07:42.225851-04:00'
  2515. wasAssociatedWith:
  2516. - identifier: RRID:SCR_019009
  2517. name: DANDI Command Line Interface
  2518. schemaKey: Software
  2519. url: https://github.com/dandi/dandi-cli
  2520. version: 0.69.3
  2521. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
  2522. access:
  2523. - schemaKey: AccessRequirements
  2524. status: dandi:OpenAccess
  2525. approach: []
  2526. blobDateModified: '2025-06-05T18:39:11.899682-04:00'
  2527. contentSize: 11141827352
  2528. contentUrl:
  2529. - https://api.dandiarchive.org/api/assets/34b7d4f7-f92d-4941-97ee-7f109ba56af4/download/
  2530. - https://dandiarchive.s3.amazonaws.com/blobs/189/eae/189eae47-b53a-48eb-8c09-294e891ea0e7
  2531. dateModified: '2025-06-06T19:07:13.792506-04:00'
  2532. digest:
  2533. dandi:dandi-etag: 9de7c35028602ed470ef03546fbe53d5-167
  2534. dandi:sha2-256: 8f2ca572ba73431fd223dfc41d1f62568bf85c5a76db1e9f0bbc3cd09437931e
  2535. encodingFormat: application/x-nwb
  2536. id: dandiasset:34b7d4f7-f92d-4941-97ee-7f109ba56af4
  2537. identifier: 34b7d4f7-f92d-4941-97ee-7f109ba56af4
  2538. keywords:
  2539. - Glymphatic, Perivascular space, Periarterial space, Cerebrospinal fluid.
  2540. measurementTechnique: []
  2541. path: sub-r-24-07-31/sub-r-24-07-31_ses-r-24-07-31-particles-upstream-001_image.nwb
  2542. schemaKey: Asset
  2543. schemaVersion: 0.6.10
  2544. variableMeasured: []
  2545. wasAttributedTo:
  2546. - age:
  2547. schemaKey: PropertyValue
  2548. unitText: ISO-8601 duration
  2549. value: P70D
  2550. valueReference:
  2551. schemaKey: PropertyValue
  2552. value: dandi:BirthReference
  2553. identifier: r-24-07-31
  2554. schemaKey: Participant
  2555. sex:
  2556. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  2557. name: Male
  2558. schemaKey: SexType
  2559. species:
  2560. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  2561. name: Rattus norvegicus - Norway rat
  2562. schemaKey: SpeciesType
  2563. wasGeneratedBy:
  2564. - description: particles_upstream_001, ECG, respiration
  2565. identifier: r-24-07-31_particles_upstream_001
  2566. name: r-24-07-31_particles_upstream_001
  2567. schemaKey: Session
  2568. startDate: '2024-07-31T15:14:59-05:00'
  2569. - description: Metadata generated by DANDI cli
  2570. endDate: '2025-06-06T19:07:13.792491-04:00'
  2571. id: urn:uuid:f5791923-e58f-4b12-b668-aade70eee4dc
  2572. name: Metadata generation
  2573. schemaKey: Activity
  2574. startDate: '2025-06-06T19:07:13.782836-04:00'
  2575. wasAssociatedWith:
  2576. - identifier: RRID:SCR_019009
  2577. name: DANDI Command Line Interface
  2578. schemaKey: Software
  2579. url: https://github.com/dandi/dandi-cli
  2580. version: 0.69.3
  2581. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
  2582. access:
  2583. - schemaKey: AccessRequirements
  2584. status: dandi:OpenAccess
  2585. approach: []
  2586. blobDateModified: '2025-06-05T19:17:59.219418-04:00'
  2587. contentSize: 11724191342
  2588. contentUrl:
  2589. - https://api.dandiarchive.org/api/assets/fd8703f5-a2a0-4990-a908-26c8820c9ddc/download/
  2590. - https://dandiarchive.s3.amazonaws.com/blobs/645/150/645150e3-07a7-4f5e-8f81-eec1f0d5d138
  2591. dateModified: '2025-06-06T19:07:45.303357-04:00'
  2592. digest:
  2593. dandi:dandi-etag: 38232b00842e44d3e78b2ed9cd499e83-175
  2594. dandi:sha2-256: 4b0b8e75fd9fdb5b69c10cbc2f1c5809ec329696fe2dc58e19b8901249bd2dee
  2595. encodingFormat: application/x-nwb
  2596. id: dandiasset:fd8703f5-a2a0-4990-a908-26c8820c9ddc
  2597. identifier: fd8703f5-a2a0-4990-a908-26c8820c9ddc
  2598. keywords:
  2599. - Glymphatic, Perivascular space, Periarterial space, Cerebrospinal fluid.
  2600. measurementTechnique: []
  2601. path: sub-r-24-07-31-rat2/sub-r-24-07-31-rat2_ses-r-24-07-31-rat2-particles-downstream-bifu_image.nwb
  2602. schemaKey: Asset
  2603. schemaVersion: 0.6.10
  2604. variableMeasured: []
  2605. wasAttributedTo:
  2606. - age:
  2607. schemaKey: PropertyValue
  2608. unitText: ISO-8601 duration
  2609. value: P70D
  2610. valueReference:
  2611. schemaKey: PropertyValue
  2612. value: dandi:BirthReference
  2613. identifier: r-24-07-31_rat2
  2614. schemaKey: Participant
  2615. sex:
  2616. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  2617. name: Male
  2618. schemaKey: SexType
  2619. species:
  2620. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  2621. name: Rattus norvegicus - Norway rat
  2622. schemaKey: SpeciesType
  2623. wasGeneratedBy:
  2624. - description: particles-downstream-bifu, ECG, respiration
  2625. identifier: r-24-07-31_rat2_particles-downstream-bifu
  2626. name: r-24-07-31_rat2_particles-downstream-bifu
  2627. schemaKey: Session
  2628. startDate: '2024-07-31T20:20:57-05:00'
  2629. - description: Metadata generated by DANDI cli
  2630. endDate: '2025-06-06T19:07:45.303346-04:00'
  2631. id: urn:uuid:89111e90-a518-4701-ab14-6b69bade86d4
  2632. name: Metadata generation
  2633. schemaKey: Activity
  2634. startDate: '2025-06-06T19:07:45.294064-04:00'
  2635. wasAssociatedWith:
  2636. - identifier: RRID:SCR_019009
  2637. name: DANDI Command Line Interface
  2638. schemaKey: Software
  2639. url: https://github.com/dandi/dandi-cli
  2640. version: 0.69.3
  2641. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
  2642. access:
  2643. - schemaKey: AccessRequirements
  2644. status: dandi:OpenAccess
  2645. approach: []
  2646. blobDateModified: '2025-06-05T19:03:42.888538-04:00'
  2647. contentSize: 11603888473
  2648. contentUrl:
  2649. - https://api.dandiarchive.org/api/assets/afe85731-0032-4343-95a4-903080477b1d/download/
  2650. - https://dandiarchive.s3.amazonaws.com/blobs/e46/057/e4605764-04ff-4e8c-b2ca-5e1f949c90f1
  2651. dateModified: '2025-06-06T19:07:25.738278-04:00'
  2652. digest:
  2653. dandi:dandi-etag: a6452a4b8722ef2c736e4cd007128de3-173
  2654. dandi:sha2-256: d7d9d65383b7d0eab93259dc67474bc351b8d4cd71a86bf9fd27444d2153052b
  2655. encodingFormat: application/x-nwb
  2656. id: dandiasset:afe85731-0032-4343-95a4-903080477b1d
  2657. identifier: afe85731-0032-4343-95a4-903080477b1d
  2658. keywords:
  2659. - Glymphatic, Perivascular space, Periarterial space, Cerebrospinal fluid.
  2660. measurementTechnique: []
  2661. path: sub-r-24-07-31-rat2/sub-r-24-07-31-rat2_ses-r-24-07-31-rat2-particles-downstream-001_image.nwb
  2662. schemaKey: Asset
  2663. schemaVersion: 0.6.10
  2664. variableMeasured: []
  2665. wasAttributedTo:
  2666. - age:
  2667. schemaKey: PropertyValue
  2668. unitText: ISO-8601 duration
  2669. value: P70D
  2670. valueReference:
  2671. schemaKey: PropertyValue
  2672. value: dandi:BirthReference
  2673. identifier: r-24-07-31_rat2
  2674. schemaKey: Participant
  2675. sex:
  2676. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  2677. name: Male
  2678. schemaKey: SexType
  2679. species:
  2680. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  2681. name: Rattus norvegicus - Norway rat
  2682. schemaKey: SpeciesType
  2683. wasGeneratedBy:
  2684. - description: particles-downstream_001, ECG, respiration
  2685. identifier: r-24-07-31_rat2_particles-downstream_001
  2686. name: r-24-07-31_rat2_particles-downstream_001
  2687. schemaKey: Session
  2688. startDate: '2024-07-31T20:28:01-05:00'
  2689. - description: Metadata generated by DANDI cli
  2690. endDate: '2025-06-06T19:07:25.738266-04:00'
  2691. id: urn:uuid:42c15f4a-ffc3-4c83-801e-0db8cfd98631
  2692. name: Metadata generation
  2693. schemaKey: Activity
  2694. startDate: '2025-06-06T19:07:25.737059-04:00'
  2695. wasAssociatedWith:
  2696. - identifier: RRID:SCR_019009
  2697. name: DANDI Command Line Interface
  2698. schemaKey: Software
  2699. url: https://github.com/dandi/dandi-cli
  2700. version: 0.69.3
  2701. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
  2702. access:
  2703. - schemaKey: AccessRequirements
  2704. status: dandi:OpenAccess
  2705. approach: []
  2706. blobDateModified: '2025-06-06T20:20:17.230218-04:00'
  2707. contentSize: 7979994617
  2708. contentUrl:
  2709. - https://api.dandiarchive.org/api/assets/98acda5b-fa47-44f4-b4fc-3a07ea7e064e/download/
  2710. - https://dandiarchive.s3.amazonaws.com/blobs/ecb/2ed/ecb2edd8-8b40-4452-ba44-0c1ad1aaf2d2
  2711. dateModified: '2025-06-06T20:46:42.035681-04:00'
  2712. digest:
  2713. dandi:dandi-etag: 59e934390bb0b64772fd6362e5032d8d-119
  2714. dandi:sha2-256: 5ddbc036cf06af9ef255b9af7190663a9014ebd2a8d4b8005c97467653c48253
  2715. encodingFormat: application/x-nwb
  2716. id: dandiasset:98acda5b-fa47-44f4-b4fc-3a07ea7e064e
  2717. identifier: 98acda5b-fa47-44f4-b4fc-3a07ea7e064e
  2718. keywords:
  2719. - Glymphatic, Perivascular space, Periarterial space, Cerebrospinal fluid.
  2720. measurementTechnique: []
  2721. path: sub-m-20210527-PTV-BPN/sub-m-20210527-PTV-BPN_ses-m-20210527-PTV-BPN-1-Normal-Pressure-particles-up_image.nwb
  2722. schemaKey: Asset
  2723. schemaVersion: 0.6.10
  2724. variableMeasured: []
  2725. wasAttributedTo:
  2726. - age:
  2727. schemaKey: PropertyValue
  2728. unitText: ISO-8601 duration
  2729. value: P281D
  2730. valueReference:
  2731. schemaKey: PropertyValue
  2732. value: dandi:BirthReference
  2733. identifier: m-20210527_PTV_BPN
  2734. schemaKey: Participant
  2735. sex:
  2736. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  2737. name: Male
  2738. schemaKey: SexType
  2739. species:
  2740. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  2741. name: Mus musculus - House mouse
  2742. schemaKey: SpeciesType
  2743. wasGeneratedBy:
  2744. - description: particles-up, ECG, respiration
  2745. identifier: m-20210527_PTV_BPN_1-Normal_Pressure_particles-up
  2746. name: m-20210527_PTV_BPN_1-Normal_Pressure_particles-up
  2747. schemaKey: Session
  2748. startDate: '2021-05-27T11:40:08-05:00'
  2749. - description: Metadata generated by DANDI cli
  2750. endDate: '2025-06-06T20:46:42.035666-04:00'
  2751. id: urn:uuid:99b4991f-b5d1-4927-b882-3d50ecb7f8e6
  2752. name: Metadata generation
  2753. schemaKey: Activity
  2754. startDate: '2025-06-06T20:46:42.033782-04:00'
  2755. wasAssociatedWith:
  2756. - identifier: RRID:SCR_019009
  2757. name: DANDI Command Line Interface
  2758. schemaKey: Software
  2759. url: https://github.com/dandi/dandi-cli
  2760. version: 0.69.3
  2761. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
  2762. access:
  2763. - schemaKey: AccessRequirements
  2764. status: dandi:OpenAccess
  2765. approach: []
  2766. blobDateModified: '2025-06-06T20:40:41.257754-04:00'
  2767. contentSize: 10175355509
  2768. contentUrl:
  2769. - https://api.dandiarchive.org/api/assets/11dfe0bf-2f6b-41a0-9572-e11d552ee4dd/download/
  2770. - https://dandiarchive.s3.amazonaws.com/blobs/68e/63d/68e63da5-b8f4-4172-8679-84294164dbbf
  2771. dateModified: '2025-06-06T20:46:46.572164-04:00'
  2772. digest:
  2773. dandi:dandi-etag: da81d13e3e16d0e8a833ec392391768f-152
  2774. encodingFormat: application/x-nwb
  2775. id: dandiasset:11dfe0bf-2f6b-41a0-9572-e11d552ee4dd
  2776. identifier: 11dfe0bf-2f6b-41a0-9572-e11d552ee4dd
  2777. keywords:
  2778. - Glymphatic, Perivascular space, Periarterial space, Cerebrospinal fluid.
  2779. measurementTechnique: []
  2780. path: sub-m-20210526-PTV-BPN-BPH/sub-m-20210526-PTV-BPN-BPH_ses-m-20210526-PTV-BPN-BPH-particles-up-001_image.nwb
  2781. schemaKey: Asset
  2782. schemaVersion: 0.6.10
  2783. variableMeasured: []
  2784. wasAttributedTo:
  2785. - age:
  2786. schemaKey: PropertyValue
  2787. unitText: ISO-8601 duration
  2788. value: P292D
  2789. valueReference:
  2790. schemaKey: PropertyValue
  2791. value: dandi:BirthReference
  2792. identifier: m-20210526_PTV_BPN-BPH
  2793. schemaKey: Participant
  2794. sex:
  2795. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  2796. name: Female
  2797. schemaKey: SexType
  2798. species:
  2799. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  2800. name: Mus musculus - House mouse
  2801. schemaKey: SpeciesType
  2802. wasGeneratedBy:
  2803. - description: particles-up_001, ECG, respiration
  2804. identifier: m-20210526_PTV_BPN-BPH_particles-up_001
  2805. name: m-20210526_PTV_BPN-BPH_particles-up_001
  2806. schemaKey: Session
  2807. startDate: '2021-05-26T11:41:13-05:00'
  2808. - description: Metadata generated by DANDI cli
  2809. endDate: '2025-06-06T20:46:46.572154-04:00'
  2810. id: urn:uuid:a23c5dd7-6a89-45e0-9992-5c8fc9d16bc8
  2811. name: Metadata generation
  2812. schemaKey: Activity
  2813. startDate: '2025-06-06T20:46:46.571328-04:00'
  2814. wasAssociatedWith:
  2815. - identifier: RRID:SCR_019009
  2816. name: DANDI Command Line Interface
  2817. schemaKey: Software
  2818. url: https://github.com/dandi/dandi-cli
  2819. version: 0.69.3
  2820. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
  2821. access:
  2822. - schemaKey: AccessRequirements
  2823. status: dandi:OpenAccess
  2824. approach: []
  2825. blobDateModified: '2025-06-06T20:11:18.242692-04:00'
  2826. contentSize: 10878065450
  2827. contentUrl:
  2828. - https://api.dandiarchive.org/api/assets/e40105a3-d03d-4d62-a81f-c5ff31c6d7ad/download/
  2829. - https://dandiarchive.s3.amazonaws.com/blobs/999/ca9/999ca9ab-a5f6-4362-8610-a5edc1babdc9
  2830. dateModified: '2025-06-06T20:46:47.992215-04:00'
  2831. digest:
  2832. dandi:dandi-etag: 4b4b07cbab1548f768c2ac90eeda6acb-163
  2833. encodingFormat: application/x-nwb
  2834. id: dandiasset:e40105a3-d03d-4d62-a81f-c5ff31c6d7ad
  2835. identifier: e40105a3-d03d-4d62-a81f-c5ff31c6d7ad
  2836. keywords:
  2837. - Glymphatic, Perivascular space, Periarterial space, Cerebrospinal fluid.
  2838. measurementTechnique: []
  2839. 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
  2840. schemaKey: Asset
  2841. schemaVersion: 0.6.10
  2842. variableMeasured: []
  2843. wasAttributedTo:
  2844. - age:
  2845. schemaKey: PropertyValue
  2846. unitText: ISO-8601 duration
  2847. value: P291D
  2848. valueReference:
  2849. schemaKey: PropertyValue
  2850. value: dandi:BirthReference
  2851. identifier: m-20210525_PTV_BPN-BPH
  2852. schemaKey: Participant
  2853. sex:
  2854. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  2855. name: Female
  2856. schemaKey: SexType
  2857. species:
  2858. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  2859. name: Mus musculus - House mouse
  2860. schemaKey: SpeciesType
  2861. wasGeneratedBy:
  2862. - description: particles-up, ECG, respiration
  2863. identifier: m-20210525_PTV_BPN-BPH_Normal_Pressure_particles-up
  2864. name: m-20210525_PTV_BPN-BPH_Normal_Pressure_particles-up
  2865. schemaKey: Session
  2866. startDate: '2021-05-25T14:36:07-05:00'
  2867. - description: Metadata generated by DANDI cli
  2868. endDate: '2025-06-06T20:46:47.992204-04:00'
  2869. id: urn:uuid:10528f2e-1968-4872-98b9-f629d1a56b44
  2870. name: Metadata generation
  2871. schemaKey: Activity
  2872. startDate: '2025-06-06T20:46:47.991227-04:00'
  2873. wasAssociatedWith:
  2874. - identifier: RRID:SCR_019009
  2875. name: DANDI Command Line Interface
  2876. schemaKey: Software
  2877. url: https://github.com/dandi/dandi-cli
  2878. version: 0.69.3
  2879. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
  2880. access:
  2881. - schemaKey: AccessRequirements
  2882. status: dandi:OpenAccess
  2883. approach: []
  2884. blobDateModified: '2025-06-06T19:55:28.815950-04:00'
  2885. contentSize: 11907181611
  2886. contentUrl:
  2887. - https://api.dandiarchive.org/api/assets/d7898dd9-dc8b-40b9-a425-2ed7763e1c36/download/
  2888. - https://dandiarchive.s3.amazonaws.com/blobs/59f/1a9/59f1a97e-c939-4015-9c61-96d3260b0ed5
  2889. dateModified: '2025-06-06T20:46:49.684570-04:00'
  2890. digest:
  2891. dandi:dandi-etag: 2f1b4094db482471c9f16773641fad99-178
  2892. encodingFormat: application/x-nwb
  2893. id: dandiasset:d7898dd9-dc8b-40b9-a425-2ed7763e1c36
  2894. identifier: d7898dd9-dc8b-40b9-a425-2ed7763e1c36
  2895. keywords:
  2896. - Glymphatic, Perivascular space, Periarterial space, Cerebrospinal fluid.
  2897. measurementTechnique: []
  2898. 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
  2899. schemaKey: Asset
  2900. schemaVersion: 0.6.10
  2901. variableMeasured: []
  2902. wasAttributedTo:
  2903. - age:
  2904. schemaKey: PropertyValue
  2905. unitText: ISO-8601 duration
  2906. value: P290D
  2907. valueReference:
  2908. schemaKey: PropertyValue
  2909. value: dandi:BirthReference
  2910. identifier: m-20210524_PTV_BPN-BPH
  2911. schemaKey: Participant
  2912. sex:
  2913. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  2914. name: Female
  2915. schemaKey: SexType
  2916. species:
  2917. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  2918. name: Mus musculus - House mouse
  2919. schemaKey: SpeciesType
  2920. wasGeneratedBy:
  2921. - description: particles-down, ECG, respiration
  2922. identifier: m-20210524_PTV_BPN-BPH_1-Normal_Pressure_particles-down
  2923. name: m-20210524_PTV_BPN-BPH_1-Normal_Pressure_particles-down
  2924. schemaKey: Session
  2925. startDate: '2021-05-24T14:57:11-05:00'
  2926. - description: Metadata generated by DANDI cli
  2927. endDate: '2025-06-06T20:46:49.684560-04:00'
  2928. id: urn:uuid:2b5b40ce-bd67-4239-a6de-a5848dce30cf
  2929. name: Metadata generation
  2930. schemaKey: Activity
  2931. startDate: '2025-06-06T20:46:49.683753-04:00'
  2932. wasAssociatedWith:
  2933. - identifier: RRID:SCR_019009
  2934. name: DANDI Command Line Interface
  2935. schemaKey: Software
  2936. url: https://github.com/dandi/dandi-cli
  2937. version: 0.69.3
  2938. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
  2939. access:
  2940. - schemaKey: AccessRequirements
  2941. status: dandi:OpenAccess
  2942. approach: []
  2943. blobDateModified: '2025-06-06T19:39:47.300439-04:00'
  2944. contentSize: 13221774430
  2945. contentUrl:
  2946. - https://api.dandiarchive.org/api/assets/d0b49575-0e56-4487-bf42-8e48bf589477/download/
  2947. - https://dandiarchive.s3.amazonaws.com/blobs/559/dd5/559dd5f2-5852-4b5a-b300-8e1320f536e6
  2948. dateModified: '2025-06-06T20:46:52.236416-04:00'
  2949. digest:
  2950. dandi:dandi-etag: d561b88c18b617e30f37f69c1446502a-198
  2951. encodingFormat: application/x-nwb
  2952. id: dandiasset:d0b49575-0e56-4487-bf42-8e48bf589477
  2953. identifier: d0b49575-0e56-4487-bf42-8e48bf589477
  2954. keywords:
  2955. - Glymphatic, Perivascular space, Periarterial space, Cerebrospinal fluid.
  2956. measurementTechnique: []
  2957. path: sub-m-20210315-PTV-BPN-BPH/sub-m-20210315-PTV-BPN-BPH_ses-m-20210315-PTV-BPN-BPH-M1-particles_image.nwb
  2958. schemaKey: Asset
  2959. schemaVersion: 0.6.10
  2960. variableMeasured: []
  2961. wasAttributedTo:
  2962. - age:
  2963. schemaKey: PropertyValue
  2964. unitText: ISO-8601 duration
  2965. value: P196D
  2966. valueReference:
  2967. schemaKey: PropertyValue
  2968. value: dandi:BirthReference
  2969. identifier: m-20210315_PTV_BPN-BPH
  2970. schemaKey: Participant
  2971. sex:
  2972. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  2973. name: Male
  2974. schemaKey: SexType
  2975. species:
  2976. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  2977. name: Mus musculus - House mouse
  2978. schemaKey: SpeciesType
  2979. wasGeneratedBy:
  2980. - description: particles, ECG, respiration
  2981. identifier: m-20210315_PTV_BPN-BPH_M1_particles
  2982. name: m-20210315_PTV_BPN-BPH_M1_particles
  2983. schemaKey: Session
  2984. startDate: '2021-02-17T10:50:11-05:00'
  2985. - description: Metadata generated by DANDI cli
  2986. endDate: '2025-06-06T20:46:52.236407-04:00'
  2987. id: urn:uuid:350605f6-a776-41eb-af7c-56c5d3bb9dd4
  2988. name: Metadata generation
  2989. schemaKey: Activity
  2990. startDate: '2025-06-06T20:46:52.235630-04:00'
  2991. wasAssociatedWith:
  2992. - identifier: RRID:SCR_019009
  2993. name: DANDI Command Line Interface
  2994. schemaKey: Software
  2995. url: https://github.com/dandi/dandi-cli
  2996. version: 0.69.3
Tip!

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

Comments

Loading...