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

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
  1. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2. access:
  3. - schemaKey: AccessRequirements
  4. status: dandi:OpenAccess
  5. approach:
  6. - name: microscopy approach; cell population imaging
  7. schemaKey: ApproachType
  8. - name: behavioral approach
  9. schemaKey: ApproachType
  10. blobDateModified: '2023-06-01T22:59:00.114507-07:00'
  11. contentSize: 1340175564
  12. contentUrl:
  13. - https://api.dandiarchive.org/api/assets/ab5ec054-8372-421c-a4f5-2cf53cf7e796/download/
  14. - https://dandiarchive.s3.amazonaws.com/blobs/a25/2dc/a252dccf-c3f2-4495-b835-b97cd8fd85fc
  15. dateModified: '2023-06-01T23:33:10.464669-07:00'
  16. datePublished: '2023-06-02T20:22:54.249975+00:00'
  17. digest:
  18. dandi:dandi-etag: 8dba2c9f04829b1897498d84175bbb4a-20
  19. dandi:sha2-256: 6a806fb6c6ab4b3c8a7e3ef4102c9a0967461567f93908c814a17a05849c0c2b
  20. encodingFormat: application/x-nwb
  21. id: dandiasset:ab5ec054-8372-421c-a4f5-2cf53cf7e796
  22. identifier: ab5ec054-8372-421c-a4f5-2cf53cf7e796
  23. measurementTechnique:
  24. - name: behavioral technique
  25. schemaKey: MeasurementTechniqueType
  26. - name: surgical technique
  27. schemaKey: MeasurementTechniqueType
  28. - name: analytical technique
  29. schemaKey: MeasurementTechniqueType
  30. path: sub-416366/sub-416366_ses-775204389_behavior+image+ophys.nwb
  31. publishedBy:
  32. endDate: '2023-06-02T20:22:54.249975+00:00'
  33. id: urn:uuid:c86e9156-525d-46cf-b17e-0287a253121f
  34. name: DANDI publish
  35. schemaKey: PublishActivity
  36. startDate: '2023-06-02T20:22:54.249975+00:00'
  37. wasAssociatedWith:
  38. - id: urn:uuid:8df55a5c-302d-4198-9070-39bb480fe5b2
  39. identifier: RRID:SCR_017571
  40. name: DANDI API
  41. schemaKey: Software
  42. version: 0.1.0
  43. schemaKey: Asset
  44. schemaVersion: 0.6.4
  45. variableMeasured:
  46. - schemaKey: PropertyValue
  47. value: PlaneSegmentation
  48. - schemaKey: PropertyValue
  49. value: ImagingPlane
  50. - schemaKey: PropertyValue
  51. value: BehavioralTimeSeries
  52. - schemaKey: PropertyValue
  53. value: ProcessingModule
  54. - schemaKey: PropertyValue
  55. value: OpticalChannel
  56. wasAttributedTo:
  57. - age:
  58. schemaKey: PropertyValue
  59. unitText: ISO-8601 duration
  60. value: P94DT6988.878S
  61. valueReference:
  62. schemaKey: PropertyValue
  63. value: dandi:BirthReference
  64. genotype: Slc17a7-IRES2-Cre/wt;Camk2a-tTA/wt;Ai93(TITL-GCaMP6f)/wt
  65. identifier: '416366'
  66. schemaKey: Participant
  67. sex:
  68. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  69. name: Male
  70. schemaKey: SexType
  71. species:
  72. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  73. name: Mus musculus - House mouse
  74. schemaKey: SpeciesType
  75. wasGeneratedBy:
  76. - description: Allen Institute OpenScope dataset
  77. identifier: '775204389'
  78. name: '775204389'
  79. schemaKey: Session
  80. startDate: '2018-11-08T17:56:28.878000-08:00'
  81. - description: Metadata generated by DANDI cli
  82. endDate: '2023-06-01T23:33:10.464669-07:00'
  83. id: urn:uuid:9b237967-a203-459f-aa69-1897b8c2db30
  84. name: Metadata generation
  85. schemaKey: Activity
  86. startDate: '2023-06-01T23:32:41.234589-07:00'
  87. wasAssociatedWith:
  88. - identifier: RRID:SCR_019009
  89. name: DANDI Command Line Interface
  90. schemaKey: Software
  91. url: https://github.com/dandi/dandi-cli
  92. version: 0.54.0
  93. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  94. access:
  95. - schemaKey: AccessRequirements
  96. status: dandi:OpenAccess
  97. approach:
  98. - name: microscopy approach; cell population imaging
  99. schemaKey: ApproachType
  100. - name: behavioral approach
  101. schemaKey: ApproachType
  102. blobDateModified: '2023-06-01T23:05:03.506222-07:00'
  103. contentSize: 1397192564
  104. contentUrl:
  105. - https://api.dandiarchive.org/api/assets/ba99173e-aff9-4c2c-a18c-10a9b9b279dc/download/
  106. - https://dandiarchive.s3.amazonaws.com/blobs/54c/1b5/54c1b581-6574-46ee-82a8-8e3530003c90
  107. dateModified: '2023-06-01T23:33:50.847781-07:00'
  108. datePublished: '2023-06-02T20:22:54.261364+00:00'
  109. digest:
  110. dandi:dandi-etag: 925743d4af9c01fdb7f89d368ea65bc9-21
  111. dandi:sha2-256: 75d6d1c833276cba08fee58ec7fb009d7107a6c54c4b68d4a2b270e335654914
  112. encodingFormat: application/x-nwb
  113. id: dandiasset:ba99173e-aff9-4c2c-a18c-10a9b9b279dc
  114. identifier: ba99173e-aff9-4c2c-a18c-10a9b9b279dc
  115. measurementTechnique:
  116. - name: behavioral technique
  117. schemaKey: MeasurementTechniqueType
  118. - name: surgical technique
  119. schemaKey: MeasurementTechniqueType
  120. - name: analytical technique
  121. schemaKey: MeasurementTechniqueType
  122. path: sub-416366/sub-416366_ses-775841272_behavior+image+ophys.nwb
  123. publishedBy:
  124. endDate: '2023-06-02T20:22:54.261364+00:00'
  125. id: urn:uuid:cdd5d7f9-b763-4cfe-9c5f-b778d340722e
  126. name: DANDI publish
  127. schemaKey: PublishActivity
  128. startDate: '2023-06-02T20:22:54.261364+00:00'
  129. wasAssociatedWith:
  130. - id: urn:uuid:5bde8e2e-266b-4ee7-bb70-792192a8aa44
  131. identifier: RRID:SCR_017571
  132. name: DANDI API
  133. schemaKey: Software
  134. version: 0.1.0
  135. schemaKey: Asset
  136. schemaVersion: 0.6.4
  137. variableMeasured:
  138. - schemaKey: PropertyValue
  139. value: PlaneSegmentation
  140. - schemaKey: PropertyValue
  141. value: ImagingPlane
  142. - schemaKey: PropertyValue
  143. value: BehavioralTimeSeries
  144. - schemaKey: PropertyValue
  145. value: ProcessingModule
  146. - schemaKey: PropertyValue
  147. value: OpticalChannel
  148. wasAttributedTo:
  149. - age:
  150. schemaKey: PropertyValue
  151. unitText: ISO-8601 duration
  152. value: P95DT9522.756S
  153. valueReference:
  154. schemaKey: PropertyValue
  155. value: dandi:BirthReference
  156. genotype: Slc17a7-IRES2-Cre/wt;Camk2a-tTA/wt;Ai93(TITL-GCaMP6f)/wt
  157. identifier: '416366'
  158. schemaKey: Participant
  159. sex:
  160. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  161. name: Male
  162. schemaKey: SexType
  163. species:
  164. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  165. name: Mus musculus - House mouse
  166. schemaKey: SpeciesType
  167. wasGeneratedBy:
  168. - description: Allen Institute OpenScope dataset
  169. identifier: '775841272'
  170. name: '775841272'
  171. schemaKey: Session
  172. startDate: '2018-11-09T18:38:42.756000-08:00'
  173. - description: Metadata generated by DANDI cli
  174. endDate: '2023-06-01T23:33:50.847781-07:00'
  175. id: urn:uuid:dbc332c4-8321-4a69-8903-a37ead8e2470
  176. name: Metadata generation
  177. schemaKey: Activity
  178. startDate: '2023-06-01T23:32:48.724585-07:00'
  179. wasAssociatedWith:
  180. - identifier: RRID:SCR_019009
  181. name: DANDI Command Line Interface
  182. schemaKey: Software
  183. url: https://github.com/dandi/dandi-cli
  184. version: 0.54.0
  185. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  186. access:
  187. - schemaKey: AccessRequirements
  188. status: dandi:OpenAccess
  189. approach:
  190. - name: microscopy approach; cell population imaging
  191. schemaKey: ApproachType
  192. - name: behavioral approach
  193. schemaKey: ApproachType
  194. blobDateModified: '2023-06-01T23:03:16.887689-07:00'
  195. contentSize: 1376008596
  196. contentUrl:
  197. - https://api.dandiarchive.org/api/assets/1cc781dc-f523-4ac8-82ad-6ede19cfece0/download/
  198. - https://dandiarchive.s3.amazonaws.com/blobs/a1d/2d5/a1d2d51a-720d-4f25-b4e4-848d473260e0
  199. dateModified: '2023-06-01T23:33:58.929529-07:00'
  200. datePublished: '2023-06-02T20:22:54.273262+00:00'
  201. digest:
  202. dandi:dandi-etag: 138c22017ef318266ca7550661e3d48b-21
  203. dandi:sha2-256: dddb01f60f9fdf40a4f2d959fd62793c9a7d6a508a9c5df069d4454ef0548534
  204. encodingFormat: application/x-nwb
  205. id: dandiasset:1cc781dc-f523-4ac8-82ad-6ede19cfece0
  206. identifier: 1cc781dc-f523-4ac8-82ad-6ede19cfece0
  207. measurementTechnique:
  208. - name: behavioral technique
  209. schemaKey: MeasurementTechniqueType
  210. - name: surgical technique
  211. schemaKey: MeasurementTechniqueType
  212. - name: analytical technique
  213. schemaKey: MeasurementTechniqueType
  214. path: sub-432373/sub-432373_ses-812785966_behavior+image+ophys.nwb
  215. publishedBy:
  216. endDate: '2023-06-02T20:22:54.273262+00:00'
  217. id: urn:uuid:e4bf0450-15ef-45e8-a985-ae7bd4613c66
  218. name: DANDI publish
  219. schemaKey: PublishActivity
  220. startDate: '2023-06-02T20:22:54.273262+00:00'
  221. wasAssociatedWith:
  222. - id: urn:uuid:304842ad-690a-472c-bfb7-281d2a9a6a96
  223. identifier: RRID:SCR_017571
  224. name: DANDI API
  225. schemaKey: Software
  226. version: 0.1.0
  227. schemaKey: Asset
  228. schemaVersion: 0.6.4
  229. variableMeasured:
  230. - schemaKey: PropertyValue
  231. value: PlaneSegmentation
  232. - schemaKey: PropertyValue
  233. value: ImagingPlane
  234. - schemaKey: PropertyValue
  235. value: BehavioralTimeSeries
  236. - schemaKey: PropertyValue
  237. value: ProcessingModule
  238. - schemaKey: PropertyValue
  239. value: OpticalChannel
  240. wasAttributedTo:
  241. - age:
  242. schemaKey: PropertyValue
  243. unitText: ISO-8601 duration
  244. value: P86DT5002.867S
  245. valueReference:
  246. schemaKey: PropertyValue
  247. value: dandi:BirthReference
  248. genotype: Slc17a7-IRES2-Cre/wt;Camk2a-tTA/wt;Ai93(TITL-GCaMP6f)/wt
  249. identifier: '432373'
  250. schemaKey: Participant
  251. sex:
  252. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  253. name: Male
  254. schemaKey: SexType
  255. species:
  256. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  257. name: Mus musculus - House mouse
  258. schemaKey: SpeciesType
  259. wasGeneratedBy:
  260. - description: Allen Institute OpenScope dataset
  261. identifier: '812785966'
  262. name: '812785966'
  263. schemaKey: Session
  264. startDate: '2019-01-24T17:23:22.867000-08:00'
  265. - description: Metadata generated by DANDI cli
  266. endDate: '2023-06-01T23:33:58.929529-07:00'
  267. id: urn:uuid:11c03068-c73e-4763-952f-650a36f0c4ef
  268. name: Metadata generation
  269. schemaKey: Activity
  270. startDate: '2023-06-01T23:33:02.192614-07:00'
  271. wasAssociatedWith:
  272. - identifier: RRID:SCR_019009
  273. name: DANDI Command Line Interface
  274. schemaKey: Software
  275. url: https://github.com/dandi/dandi-cli
  276. version: 0.54.0
  277. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  278. access:
  279. - schemaKey: AccessRequirements
  280. status: dandi:OpenAccess
  281. approach:
  282. - name: microscopy approach; cell population imaging
  283. schemaKey: ApproachType
  284. - name: behavioral approach
  285. schemaKey: ApproachType
  286. blobDateModified: '2023-06-01T22:58:31.543172-07:00'
  287. contentSize: 1295830892
  288. contentUrl:
  289. - https://api.dandiarchive.org/api/assets/15057c95-f453-4eef-ac05-f424f4b54ee1/download/
  290. - https://dandiarchive.s3.amazonaws.com/blobs/f22/87f/f2287f7c-7848-4008-b37b-96c90a568df2
  291. dateModified: '2023-06-01T23:34:05.363011-07:00'
  292. datePublished: '2023-06-02T20:22:54.255888+00:00'
  293. digest:
  294. dandi:dandi-etag: 0d9cd47e66ee178d8daa0b1924d76fc5-20
  295. dandi:sha2-256: 999ae7ae5382539e8568605a800b15d58a0e64f249922f43472d55478c55b149
  296. encodingFormat: application/x-nwb
  297. id: dandiasset:15057c95-f453-4eef-ac05-f424f4b54ee1
  298. identifier: 15057c95-f453-4eef-ac05-f424f4b54ee1
  299. measurementTechnique:
  300. - name: behavioral technique
  301. schemaKey: MeasurementTechniqueType
  302. - name: surgical technique
  303. schemaKey: MeasurementTechniqueType
  304. - name: analytical technique
  305. schemaKey: MeasurementTechniqueType
  306. path: sub-416366/sub-416366_ses-774663713_behavior+image+ophys.nwb
  307. publishedBy:
  308. endDate: '2023-06-02T20:22:54.255888+00:00'
  309. id: urn:uuid:9fd58488-0ce5-4b23-893e-0f75bafa53e2
  310. name: DANDI publish
  311. schemaKey: PublishActivity
  312. startDate: '2023-06-02T20:22:54.255888+00:00'
  313. wasAssociatedWith:
  314. - id: urn:uuid:b9d36431-bdc8-4bb5-ac41-87ebbcd1e0d4
  315. identifier: RRID:SCR_017571
  316. name: DANDI API
  317. schemaKey: Software
  318. version: 0.1.0
  319. schemaKey: Asset
  320. schemaVersion: 0.6.4
  321. variableMeasured:
  322. - schemaKey: PropertyValue
  323. value: PlaneSegmentation
  324. - schemaKey: PropertyValue
  325. value: ImagingPlane
  326. - schemaKey: PropertyValue
  327. value: BehavioralTimeSeries
  328. - schemaKey: PropertyValue
  329. value: ProcessingModule
  330. - schemaKey: PropertyValue
  331. value: OpticalChannel
  332. wasAttributedTo:
  333. - age:
  334. schemaKey: PropertyValue
  335. unitText: ISO-8601 duration
  336. value: P93DT7408.972S
  337. valueReference:
  338. schemaKey: PropertyValue
  339. value: dandi:BirthReference
  340. genotype: Slc17a7-IRES2-Cre/wt;Camk2a-tTA/wt;Ai93(TITL-GCaMP6f)/wt
  341. identifier: '416366'
  342. schemaKey: Participant
  343. sex:
  344. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  345. name: Male
  346. schemaKey: SexType
  347. species:
  348. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  349. name: Mus musculus - House mouse
  350. schemaKey: SpeciesType
  351. wasGeneratedBy:
  352. - description: Allen Institute OpenScope dataset
  353. identifier: '774663713'
  354. name: '774663713'
  355. schemaKey: Session
  356. startDate: '2018-11-07T18:03:28.972000-08:00'
  357. - description: Metadata generated by DANDI cli
  358. endDate: '2023-06-01T23:34:05.363011-07:00'
  359. id: urn:uuid:c5ac9b8d-97d3-4abd-9be1-806d442a7d7a
  360. name: Metadata generation
  361. schemaKey: Activity
  362. startDate: '2023-06-01T23:33:08.398366-07:00'
  363. wasAssociatedWith:
  364. - identifier: RRID:SCR_019009
  365. name: DANDI Command Line Interface
  366. schemaKey: Software
  367. url: https://github.com/dandi/dandi-cli
  368. version: 0.54.0
  369. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  370. access:
  371. - schemaKey: AccessRequirements
  372. status: dandi:OpenAccess
  373. approach:
  374. - name: microscopy approach; cell population imaging
  375. schemaKey: ApproachType
  376. - name: behavioral approach
  377. schemaKey: ApproachType
  378. blobDateModified: '2023-06-01T23:06:43.244365-07:00'
  379. contentSize: 1545789836
  380. contentUrl:
  381. - https://api.dandiarchive.org/api/assets/862c4c4b-08fc-427d-892e-8b95a34e0111/download/
  382. - https://dandiarchive.s3.amazonaws.com/blobs/c93/e3e/c93e3e55-3e78-4a4b-9cd9-9a679dc4c342
  383. dateModified: '2023-06-01T23:34:35.802726-07:00'
  384. datePublished: '2023-06-02T20:22:54.267980+00:00'
  385. digest:
  386. dandi:dandi-etag: db3df010dda002735993a52893021dca-24
  387. dandi:sha2-256: 3cd4ec8432f6f7aaa41c40db1f99f9a1fed7a06915117f9b6e6f150430dbc39e
  388. encodingFormat: application/x-nwb
  389. id: dandiasset:862c4c4b-08fc-427d-892e-8b95a34e0111
  390. identifier: 862c4c4b-08fc-427d-892e-8b95a34e0111
  391. measurementTechnique:
  392. - name: behavioral technique
  393. schemaKey: MeasurementTechniqueType
  394. - name: surgical technique
  395. schemaKey: MeasurementTechniqueType
  396. - name: analytical technique
  397. schemaKey: MeasurementTechniqueType
  398. path: sub-416366/sub-416366_ses-768476976_behavior+image+ophys.nwb
  399. publishedBy:
  400. endDate: '2023-06-02T20:22:54.267980+00:00'
  401. id: urn:uuid:d9193fc0-3e1c-4570-a664-93e3e57a4fd8
  402. name: DANDI publish
  403. schemaKey: PublishActivity
  404. startDate: '2023-06-02T20:22:54.267980+00:00'
  405. wasAssociatedWith:
  406. - id: urn:uuid:8a093d65-4f39-4572-8208-a2302fdbdb5e
  407. identifier: RRID:SCR_017571
  408. name: DANDI API
  409. schemaKey: Software
  410. version: 0.1.0
  411. schemaKey: Asset
  412. schemaVersion: 0.6.4
  413. variableMeasured:
  414. - schemaKey: PropertyValue
  415. value: PlaneSegmentation
  416. - schemaKey: PropertyValue
  417. value: ImagingPlane
  418. - schemaKey: PropertyValue
  419. value: BehavioralTimeSeries
  420. - schemaKey: PropertyValue
  421. value: ProcessingModule
  422. - schemaKey: PropertyValue
  423. value: OpticalChannel
  424. wasAttributedTo:
  425. - age:
  426. schemaKey: PropertyValue
  427. unitText: ISO-8601 duration
  428. value: P80DT3939.176S
  429. valueReference:
  430. schemaKey: PropertyValue
  431. value: dandi:BirthReference
  432. genotype: Slc17a7-IRES2-Cre/wt;Camk2a-tTA/wt;Ai93(TITL-GCaMP6f)/wt
  433. identifier: '416366'
  434. schemaKey: Participant
  435. sex:
  436. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  437. name: Male
  438. schemaKey: SexType
  439. species:
  440. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  441. name: Mus musculus - House mouse
  442. schemaKey: SpeciesType
  443. wasGeneratedBy:
  444. - description: Allen Institute OpenScope dataset
  445. identifier: '768476976'
  446. name: '768476976'
  447. schemaKey: Session
  448. startDate: '2018-10-25T18:05:39.176000-07:00'
  449. - description: Metadata generated by DANDI cli
  450. endDate: '2023-06-01T23:34:35.802726-07:00'
  451. id: urn:uuid:12b07f72-a45d-4a44-9532-c938f798cba9
  452. name: Metadata generation
  453. schemaKey: Activity
  454. startDate: '2023-06-01T23:33:14.654559-07:00'
  455. wasAssociatedWith:
  456. - identifier: RRID:SCR_019009
  457. name: DANDI Command Line Interface
  458. schemaKey: Software
  459. url: https://github.com/dandi/dandi-cli
  460. version: 0.54.0
  461. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  462. access:
  463. - schemaKey: AccessRequirements
  464. status: dandi:OpenAccess
  465. approach:
  466. - name: microscopy approach; cell population imaging
  467. schemaKey: ApproachType
  468. - name: behavioral approach
  469. schemaKey: ApproachType
  470. blobDateModified: '2023-06-01T22:58:59.277202-07:00'
  471. contentSize: 1331707372
  472. contentUrl:
  473. - https://api.dandiarchive.org/api/assets/f1761f56-5bf4-4dfe-8aeb-37560cc0fdf5/download/
  474. - https://dandiarchive.s3.amazonaws.com/blobs/6a7/420/6a742061-24fc-4edd-9e26-dd3649b58a17
  475. dateModified: '2023-06-01T23:36:57.031730-07:00'
  476. datePublished: '2023-06-02T20:22:54.282994+00:00'
  477. digest:
  478. dandi:dandi-etag: 6602985250d52ad01165e3b6e405fd86-20
  479. dandi:sha2-256: 36d96757baed7d9cf0bfea826b8b6ee2857e245966b0513aab83e5d63db592d5
  480. encodingFormat: application/x-nwb
  481. id: dandiasset:f1761f56-5bf4-4dfe-8aeb-37560cc0fdf5
  482. identifier: f1761f56-5bf4-4dfe-8aeb-37560cc0fdf5
  483. measurementTechnique:
  484. - name: behavioral technique
  485. schemaKey: MeasurementTechniqueType
  486. - name: surgical technique
  487. schemaKey: MeasurementTechniqueType
  488. - name: analytical technique
  489. schemaKey: MeasurementTechniqueType
  490. path: sub-432373/sub-432373_ses-815987594_behavior+image+ophys.nwb
  491. publishedBy:
  492. endDate: '2023-06-02T20:22:54.282994+00:00'
  493. id: urn:uuid:3e98df93-260a-4fae-8cd1-52982b5e9e04
  494. name: DANDI publish
  495. schemaKey: PublishActivity
  496. startDate: '2023-06-02T20:22:54.282994+00:00'
  497. wasAssociatedWith:
  498. - id: urn:uuid:5172e924-e899-4fc7-a312-36872ccfe391
  499. identifier: RRID:SCR_017571
  500. name: DANDI API
  501. schemaKey: Software
  502. version: 0.1.0
  503. schemaKey: Asset
  504. schemaVersion: 0.6.4
  505. variableMeasured:
  506. - schemaKey: PropertyValue
  507. value: PlaneSegmentation
  508. - schemaKey: PropertyValue
  509. value: ImagingPlane
  510. - schemaKey: PropertyValue
  511. value: BehavioralTimeSeries
  512. - schemaKey: PropertyValue
  513. value: ProcessingModule
  514. - schemaKey: PropertyValue
  515. value: OpticalChannel
  516. wasAttributedTo:
  517. - age:
  518. schemaKey: PropertyValue
  519. unitText: ISO-8601 duration
  520. value: P93DT9152.01S
  521. valueReference:
  522. schemaKey: PropertyValue
  523. value: dandi:BirthReference
  524. genotype: Slc17a7-IRES2-Cre/wt;Camk2a-tTA/wt;Ai93(TITL-GCaMP6f)/wt
  525. identifier: '432373'
  526. schemaKey: Participant
  527. sex:
  528. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  529. name: Male
  530. schemaKey: SexType
  531. species:
  532. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  533. name: Mus musculus - House mouse
  534. schemaKey: SpeciesType
  535. wasGeneratedBy:
  536. - description: Allen Institute OpenScope dataset
  537. identifier: '815987594'
  538. name: '815987594'
  539. schemaKey: Session
  540. startDate: '2019-01-31T18:32:32.010000-08:00'
  541. - description: Metadata generated by DANDI cli
  542. endDate: '2023-06-01T23:36:57.031730-07:00'
  543. id: urn:uuid:594b0d39-5c39-4ddf-bf43-4548f1d22ddb
  544. name: Metadata generation
  545. schemaKey: Activity
  546. startDate: '2023-06-01T23:35:33.922509-07:00'
  547. wasAssociatedWith:
  548. - identifier: RRID:SCR_019009
  549. name: DANDI Command Line Interface
  550. schemaKey: Software
  551. url: https://github.com/dandi/dandi-cli
  552. version: 0.54.0
  553. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  554. access:
  555. - schemaKey: AccessRequirements
  556. status: dandi:OpenAccess
  557. approach:
  558. - name: microscopy approach; cell population imaging
  559. schemaKey: ApproachType
  560. - name: behavioral approach
  561. schemaKey: ApproachType
  562. blobDateModified: '2023-06-01T22:54:21.914980-07:00'
  563. contentSize: 1304184340
  564. contentUrl:
  565. - https://api.dandiarchive.org/api/assets/6a35c81e-ae18-4800-a2cd-9b722d03d526/download/
  566. - https://dandiarchive.s3.amazonaws.com/blobs/eae/c1b/eaec1b65-8b90-486d-a0b3-dd290b9761aa
  567. dateModified: '2023-06-01T23:37:29.958828-07:00'
  568. datePublished: '2023-06-02T20:22:54.294531+00:00'
  569. digest:
  570. dandi:dandi-etag: 20674eef2d8a3e472699a07e46dcaf7b-20
  571. dandi:sha2-256: e9bd00951ebaecc5f3c1229ddb2fa756a4969a3ad3b26223f6e0dbece8800663
  572. encodingFormat: application/x-nwb
  573. id: dandiasset:6a35c81e-ae18-4800-a2cd-9b722d03d526
  574. identifier: 6a35c81e-ae18-4800-a2cd-9b722d03d526
  575. measurementTechnique:
  576. - name: behavioral technique
  577. schemaKey: MeasurementTechniqueType
  578. - name: surgical technique
  579. schemaKey: MeasurementTechniqueType
  580. - name: analytical technique
  581. schemaKey: MeasurementTechniqueType
  582. path: sub-433242/sub-433242_ses-826156469_behavior+image+ophys.nwb
  583. publishedBy:
  584. endDate: '2023-06-02T20:22:54.294531+00:00'
  585. id: urn:uuid:eb7cb5fe-97f1-46c1-addb-90cde8132c97
  586. name: DANDI publish
  587. schemaKey: PublishActivity
  588. startDate: '2023-06-02T20:22:54.294531+00:00'
  589. wasAssociatedWith:
  590. - id: urn:uuid:77c43b10-1b33-448b-8b96-26fcfbbba1e4
  591. identifier: RRID:SCR_017571
  592. name: DANDI API
  593. schemaKey: Software
  594. version: 0.1.0
  595. schemaKey: Asset
  596. schemaVersion: 0.6.4
  597. variableMeasured:
  598. - schemaKey: PropertyValue
  599. value: PlaneSegmentation
  600. - schemaKey: PropertyValue
  601. value: ImagingPlane
  602. - schemaKey: PropertyValue
  603. value: BehavioralTimeSeries
  604. - schemaKey: PropertyValue
  605. value: ProcessingModule
  606. - schemaKey: PropertyValue
  607. value: OpticalChannel
  608. wasAttributedTo:
  609. - age:
  610. schemaKey: PropertyValue
  611. unitText: ISO-8601 duration
  612. value: P108DT18067.175S
  613. valueReference:
  614. schemaKey: PropertyValue
  615. value: dandi:BirthReference
  616. genotype: Slc17a7-IRES2-Cre/wt;Camk2a-tTA/wt;Ai93(TITL-GCaMP6f)/wt
  617. identifier: '433242'
  618. schemaKey: Participant
  619. sex:
  620. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  621. name: Male
  622. schemaKey: SexType
  623. species:
  624. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  625. name: Mus musculus - House mouse
  626. schemaKey: SpeciesType
  627. wasGeneratedBy:
  628. - description: Allen Institute OpenScope dataset
  629. identifier: '826156469'
  630. name: '826156469'
  631. schemaKey: Session
  632. startDate: '2019-02-20T21:01:07.175000-08:00'
  633. - description: Metadata generated by DANDI cli
  634. endDate: '2023-06-01T23:37:29.958828-07:00'
  635. id: urn:uuid:b507a970-4b48-4e58-bce1-f6d7c646cabc
  636. name: Metadata generation
  637. schemaKey: Activity
  638. startDate: '2023-06-01T23:36:25.573419-07:00'
  639. wasAssociatedWith:
  640. - identifier: RRID:SCR_019009
  641. name: DANDI Command Line Interface
  642. schemaKey: Software
  643. url: https://github.com/dandi/dandi-cli
  644. version: 0.54.0
  645. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  646. access:
  647. - schemaKey: AccessRequirements
  648. status: dandi:OpenAccess
  649. approach:
  650. - name: microscopy approach; cell population imaging
  651. schemaKey: ApproachType
  652. - name: behavioral approach
  653. schemaKey: ApproachType
  654. blobDateModified: '2023-06-01T23:06:09.383811-07:00'
  655. contentSize: 1673710836
  656. contentUrl:
  657. - https://api.dandiarchive.org/api/assets/c677cb97-63e2-43eb-b665-a2833397800d/download/
  658. - https://dandiarchive.s3.amazonaws.com/blobs/983/aa1/983aa1cb-07bc-417b-a1b6-e51fb8d4d3c9
  659. dateModified: '2023-06-01T23:37:28.658344-07:00'
  660. datePublished: '2023-06-02T20:22:54.288685+00:00'
  661. digest:
  662. dandi:dandi-etag: d213f0f873fca59525346925768e7e18-25
  663. dandi:sha2-256: 1f245704768416af0444ea338662aa690e809dd30955708db3c62fb264d7234b
  664. encodingFormat: application/x-nwb
  665. id: dandiasset:c677cb97-63e2-43eb-b665-a2833397800d
  666. identifier: c677cb97-63e2-43eb-b665-a2833397800d
  667. measurementTechnique:
  668. - name: behavioral technique
  669. schemaKey: MeasurementTechniqueType
  670. - name: surgical technique
  671. schemaKey: MeasurementTechniqueType
  672. - name: analytical technique
  673. schemaKey: MeasurementTechniqueType
  674. path: sub-432373/sub-432373_ses-817048539_behavior+image+ophys.nwb
  675. publishedBy:
  676. endDate: '2023-06-02T20:22:54.288685+00:00'
  677. id: urn:uuid:c0373d58-c719-4b87-a198-463bc3817151
  678. name: DANDI publish
  679. schemaKey: PublishActivity
  680. startDate: '2023-06-02T20:22:54.288685+00:00'
  681. wasAssociatedWith:
  682. - id: urn:uuid:b62707fd-1ec1-4b26-9542-7bab0686cdc6
  683. identifier: RRID:SCR_017571
  684. name: DANDI API
  685. schemaKey: Software
  686. version: 0.1.0
  687. schemaKey: Asset
  688. schemaVersion: 0.6.4
  689. variableMeasured:
  690. - schemaKey: PropertyValue
  691. value: PlaneSegmentation
  692. - schemaKey: PropertyValue
  693. value: ImagingPlane
  694. - schemaKey: PropertyValue
  695. value: BehavioralTimeSeries
  696. - schemaKey: PropertyValue
  697. value: ProcessingModule
  698. - schemaKey: PropertyValue
  699. value: OpticalChannel
  700. wasAttributedTo:
  701. - age:
  702. schemaKey: PropertyValue
  703. unitText: ISO-8601 duration
  704. value: P94DT10332.854S
  705. valueReference:
  706. schemaKey: PropertyValue
  707. value: dandi:BirthReference
  708. genotype: Slc17a7-IRES2-Cre/wt;Camk2a-tTA/wt;Ai93(TITL-GCaMP6f)/wt
  709. identifier: '432373'
  710. schemaKey: Participant
  711. sex:
  712. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  713. name: Male
  714. schemaKey: SexType
  715. species:
  716. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  717. name: Mus musculus - House mouse
  718. schemaKey: SpeciesType
  719. wasGeneratedBy:
  720. - description: Allen Institute OpenScope dataset
  721. identifier: '817048539'
  722. name: '817048539'
  723. schemaKey: Session
  724. startDate: '2019-02-01T18:52:12.854000-08:00'
  725. - description: Metadata generated by DANDI cli
  726. endDate: '2023-06-01T23:37:28.658344-07:00'
  727. id: urn:uuid:f28745f6-09fc-468e-9c83-1668561fa992
  728. name: Metadata generation
  729. schemaKey: Activity
  730. startDate: '2023-06-01T23:36:17.060510-07:00'
  731. wasAssociatedWith:
  732. - identifier: RRID:SCR_019009
  733. name: DANDI Command Line Interface
  734. schemaKey: Software
  735. url: https://github.com/dandi/dandi-cli
  736. version: 0.54.0
  737. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  738. access:
  739. - schemaKey: AccessRequirements
  740. status: dandi:OpenAccess
  741. approach:
  742. - name: microscopy approach; cell population imaging
  743. schemaKey: ApproachType
  744. - name: behavioral approach
  745. schemaKey: ApproachType
  746. blobDateModified: '2023-06-01T22:54:38.306625-07:00'
  747. contentSize: 1327789644
  748. contentUrl:
  749. - https://api.dandiarchive.org/api/assets/01cba1b5-1305-47d7-a6a7-311c0af3417f/download/
  750. - https://dandiarchive.s3.amazonaws.com/blobs/189/168/189168cd-8ac4-4561-b0ea-858d0c79225d
  751. dateModified: '2023-06-01T23:38:00.964239-07:00'
  752. datePublished: '2023-06-02T20:22:54.307311+00:00'
  753. digest:
  754. dandi:dandi-etag: 073ad5a1811d826d4c9cf7f84fa16931-20
  755. dandi:sha2-256: 0b65aa57bf131eab0b9af0ddb8c6771256d099d17d1459a00d00b4f9f7c258e6
  756. encodingFormat: application/x-nwb
  757. id: dandiasset:01cba1b5-1305-47d7-a6a7-311c0af3417f
  758. identifier: 01cba1b5-1305-47d7-a6a7-311c0af3417f
  759. measurementTechnique:
  760. - name: behavioral technique
  761. schemaKey: MeasurementTechniqueType
  762. - name: surgical technique
  763. schemaKey: MeasurementTechniqueType
  764. - name: analytical technique
  765. schemaKey: MeasurementTechniqueType
  766. path: sub-433242/sub-433242_ses-826788987_behavior+image+ophys.nwb
  767. publishedBy:
  768. endDate: '2023-06-02T20:22:54.307311+00:00'
  769. id: urn:uuid:0515709f-3214-4db8-9d30-075f25d6fb4a
  770. name: DANDI publish
  771. schemaKey: PublishActivity
  772. startDate: '2023-06-02T20:22:54.307311+00:00'
  773. wasAssociatedWith:
  774. - id: urn:uuid:1cec0129-5e40-4b1d-b843-19b881051fa6
  775. identifier: RRID:SCR_017571
  776. name: DANDI API
  777. schemaKey: Software
  778. version: 0.1.0
  779. schemaKey: Asset
  780. schemaVersion: 0.6.4
  781. variableMeasured:
  782. - schemaKey: PropertyValue
  783. value: PlaneSegmentation
  784. - schemaKey: PropertyValue
  785. value: ImagingPlane
  786. - schemaKey: PropertyValue
  787. value: BehavioralTimeSeries
  788. - schemaKey: PropertyValue
  789. value: ProcessingModule
  790. - schemaKey: PropertyValue
  791. value: OpticalChannel
  792. wasAttributedTo:
  793. - age:
  794. schemaKey: PropertyValue
  795. unitText: ISO-8601 duration
  796. value: P109DT17356.447S
  797. valueReference:
  798. schemaKey: PropertyValue
  799. value: dandi:BirthReference
  800. genotype: Slc17a7-IRES2-Cre/wt;Camk2a-tTA/wt;Ai93(TITL-GCaMP6f)/wt
  801. identifier: '433242'
  802. schemaKey: Participant
  803. sex:
  804. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  805. name: Male
  806. schemaKey: SexType
  807. species:
  808. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  809. name: Mus musculus - House mouse
  810. schemaKey: SpeciesType
  811. wasGeneratedBy:
  812. - description: Allen Institute OpenScope dataset
  813. identifier: '826788987'
  814. name: '826788987'
  815. schemaKey: Session
  816. startDate: '2019-02-21T20:49:16.447000-08:00'
  817. - description: Metadata generated by DANDI cli
  818. endDate: '2023-06-01T23:38:00.964239-07:00'
  819. id: urn:uuid:76773a4b-abe3-4cee-aae2-f98586208e84
  820. name: Metadata generation
  821. schemaKey: Activity
  822. startDate: '2023-06-01T23:36:37.378857-07:00'
  823. wasAssociatedWith:
  824. - identifier: RRID:SCR_019009
  825. name: DANDI Command Line Interface
  826. schemaKey: Software
  827. url: https://github.com/dandi/dandi-cli
  828. version: 0.54.0
  829. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  830. access:
  831. - schemaKey: AccessRequirements
  832. status: dandi:OpenAccess
  833. approach:
  834. - name: microscopy approach; cell population imaging
  835. schemaKey: ApproachType
  836. - name: behavioral approach
  837. schemaKey: ApproachType
  838. blobDateModified: '2023-06-01T22:59:54.389940-07:00'
  839. contentSize: 1321439676
  840. contentUrl:
  841. - https://api.dandiarchive.org/api/assets/b623638d-cd2e-4ef7-8431-5930117e0cbe/download/
  842. - https://dandiarchive.s3.amazonaws.com/blobs/cdc/4a0/cdc4a0cb-3cac-4d5d-83ea-99a69770d72d
  843. dateModified: '2023-06-01T23:40:30.363588-07:00'
  844. datePublished: '2023-06-02T20:22:54.336768+00:00'
  845. digest:
  846. dandi:dandi-etag: ec4bc186613d926a5f1d81e1dd673194-20
  847. dandi:sha2-256: 0e25783cb134f0427d64cd2e662b6a614d1e8ce733919c974688c464e3bd9eed
  848. encodingFormat: application/x-nwb
  849. id: dandiasset:b623638d-cd2e-4ef7-8431-5930117e0cbe
  850. identifier: b623638d-cd2e-4ef7-8431-5930117e0cbe
  851. measurementTechnique:
  852. - name: behavioral technique
  853. schemaKey: MeasurementTechniqueType
  854. - name: surgical technique
  855. schemaKey: MeasurementTechniqueType
  856. - name: analytical technique
  857. schemaKey: MeasurementTechniqueType
  858. path: sub-433242/sub-433242_ses-829248349_behavior+image+ophys.nwb
  859. publishedBy:
  860. endDate: '2023-06-02T20:22:54.336768+00:00'
  861. id: urn:uuid:3ed07a07-1678-4aac-9fd9-e9627fd962ed
  862. name: DANDI publish
  863. schemaKey: PublishActivity
  864. startDate: '2023-06-02T20:22:54.336768+00:00'
  865. wasAssociatedWith:
  866. - id: urn:uuid:2eb98364-e0fe-4094-a9f3-33b8735c70a7
  867. identifier: RRID:SCR_017571
  868. name: DANDI API
  869. schemaKey: Software
  870. version: 0.1.0
  871. schemaKey: Asset
  872. schemaVersion: 0.6.4
  873. variableMeasured:
  874. - schemaKey: PropertyValue
  875. value: PlaneSegmentation
  876. - schemaKey: PropertyValue
  877. value: ImagingPlane
  878. - schemaKey: PropertyValue
  879. value: BehavioralTimeSeries
  880. - schemaKey: PropertyValue
  881. value: ProcessingModule
  882. - schemaKey: PropertyValue
  883. value: OpticalChannel
  884. wasAttributedTo:
  885. - age:
  886. schemaKey: PropertyValue
  887. unitText: ISO-8601 duration
  888. value: P114DT17475.863S
  889. valueReference:
  890. schemaKey: PropertyValue
  891. value: dandi:BirthReference
  892. genotype: Slc17a7-IRES2-Cre/wt;Camk2a-tTA/wt;Ai93(TITL-GCaMP6f)/wt
  893. identifier: '433242'
  894. schemaKey: Participant
  895. sex:
  896. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  897. name: Male
  898. schemaKey: SexType
  899. species:
  900. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  901. name: Mus musculus - House mouse
  902. schemaKey: SpeciesType
  903. wasGeneratedBy:
  904. - description: Allen Institute OpenScope dataset
  905. identifier: '829248349'
  906. name: '829248349'
  907. schemaKey: Session
  908. startDate: '2019-02-26T20:51:15.863000-08:00'
  909. - description: Metadata generated by DANDI cli
  910. endDate: '2023-06-01T23:40:30.363588-07:00'
  911. id: urn:uuid:5fb01169-37f9-4ebb-a94a-2cc0261ce623
  912. name: Metadata generation
  913. schemaKey: Activity
  914. startDate: '2023-06-01T23:39:29.140017-07:00'
  915. wasAssociatedWith:
  916. - identifier: RRID:SCR_019009
  917. name: DANDI Command Line Interface
  918. schemaKey: Software
  919. url: https://github.com/dandi/dandi-cli
  920. version: 0.54.0
  921. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  922. access:
  923. - schemaKey: AccessRequirements
  924. status: dandi:OpenAccess
  925. approach:
  926. - name: microscopy approach; cell population imaging
  927. schemaKey: ApproachType
  928. - name: behavioral approach
  929. schemaKey: ApproachType
  930. blobDateModified: '2023-06-01T22:57:04.276179-07:00'
  931. contentSize: 1205022204
  932. contentUrl:
  933. - https://api.dandiarchive.org/api/assets/461f7298-3904-4ebc-8aa8-a16e95ddfe7c/download/
  934. - https://dandiarchive.s3.amazonaws.com/blobs/def/dc4/defdc491-60c4-4aa0-bc31-315c4287af27
  935. dateModified: '2023-06-01T23:40:55.796505-07:00'
  936. datePublished: '2023-06-02T20:22:54.313370+00:00'
  937. digest:
  938. dandi:dandi-etag: a68c7c752325cec9cdda1271998efa5e-18
  939. dandi:sha2-256: 72a56649df0b788e6aead48bbae2ef1af0e52e4431a52eb2ad04f7311e2e3393
  940. encodingFormat: application/x-nwb
  941. id: dandiasset:461f7298-3904-4ebc-8aa8-a16e95ddfe7c
  942. identifier: 461f7298-3904-4ebc-8aa8-a16e95ddfe7c
  943. measurementTechnique:
  944. - name: behavioral technique
  945. schemaKey: MeasurementTechniqueType
  946. - name: surgical technique
  947. schemaKey: MeasurementTechniqueType
  948. - name: analytical technique
  949. schemaKey: MeasurementTechniqueType
  950. path: sub-437813/sub-437813_ses-847488858_behavior+image+ophys.nwb
  951. publishedBy:
  952. endDate: '2023-06-02T20:22:54.313370+00:00'
  953. id: urn:uuid:39eec776-cb11-405a-9672-79d62eab0862
  954. name: DANDI publish
  955. schemaKey: PublishActivity
  956. startDate: '2023-06-02T20:22:54.313370+00:00'
  957. wasAssociatedWith:
  958. - id: urn:uuid:805e7b36-1ef5-4470-934f-5bd025a4e04e
  959. identifier: RRID:SCR_017571
  960. name: DANDI API
  961. schemaKey: Software
  962. version: 0.1.0
  963. schemaKey: Asset
  964. schemaVersion: 0.6.4
  965. variableMeasured:
  966. - schemaKey: PropertyValue
  967. value: PlaneSegmentation
  968. - schemaKey: PropertyValue
  969. value: ImagingPlane
  970. - schemaKey: PropertyValue
  971. value: BehavioralTimeSeries
  972. - schemaKey: PropertyValue
  973. value: ProcessingModule
  974. - schemaKey: PropertyValue
  975. value: OpticalChannel
  976. wasAttributedTo:
  977. - age:
  978. schemaKey: PropertyValue
  979. unitText: ISO-8601 duration
  980. value: P134DT81294.727S
  981. valueReference:
  982. schemaKey: PropertyValue
  983. value: dandi:BirthReference
  984. genotype: Rbp4-Cre_KL100/wt;Camk2a-tTA/wt;Ai93(TITL-GCaMP6f)/wt
  985. identifier: '437813'
  986. schemaKey: Participant
  987. sex:
  988. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  989. name: Male
  990. schemaKey: SexType
  991. species:
  992. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  993. name: Mus musculus - House mouse
  994. schemaKey: SpeciesType
  995. wasGeneratedBy:
  996. - description: Allen Institute OpenScope dataset
  997. identifier: '847488858'
  998. name: '847488858'
  999. schemaKey: Session
  1000. startDate: '2019-04-08T15:34:54.727000-07:00'
  1001. - description: Metadata generated by DANDI cli
  1002. endDate: '2023-06-01T23:40:55.796505-07:00'
  1003. id: urn:uuid:b68052bf-334d-48f8-b224-f1a6b1649108
  1004. name: Metadata generation
  1005. schemaKey: Activity
  1006. startDate: '2023-06-01T23:39:59.062412-07:00'
  1007. wasAssociatedWith:
  1008. - identifier: RRID:SCR_019009
  1009. name: DANDI Command Line Interface
  1010. schemaKey: Software
  1011. url: https://github.com/dandi/dandi-cli
  1012. version: 0.54.0
  1013. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1014. access:
  1015. - schemaKey: AccessRequirements
  1016. status: dandi:OpenAccess
  1017. approach:
  1018. - name: microscopy approach; cell population imaging
  1019. schemaKey: ApproachType
  1020. - name: behavioral approach
  1021. schemaKey: ApproachType
  1022. blobDateModified: '2023-06-01T22:54:12.644051-07:00'
  1023. contentSize: 1300291324
  1024. contentUrl:
  1025. - https://api.dandiarchive.org/api/assets/289ffbeb-61b3-4084-9883-7c3d7c24cfd7/download/
  1026. - https://dandiarchive.s3.amazonaws.com/blobs/e01/fc9/e01fc971-51c6-4cf5-9350-49e3e43becc8
  1027. dateModified: '2023-06-01T23:40:56.121452-07:00'
  1028. datePublished: '2023-06-02T20:22:54.319314+00:00'
  1029. digest:
  1030. dandi:dandi-etag: 36361989dfc5f32088ad594afd549a07-20
  1031. dandi:sha2-256: f2efba58493e47d3f349a208e97ac511f3a94cdf08c595fea37afd2cb603d9ed
  1032. encodingFormat: application/x-nwb
  1033. id: dandiasset:289ffbeb-61b3-4084-9883-7c3d7c24cfd7
  1034. identifier: 289ffbeb-61b3-4084-9883-7c3d7c24cfd7
  1035. measurementTechnique:
  1036. - name: behavioral technique
  1037. schemaKey: MeasurementTechniqueType
  1038. - name: surgical technique
  1039. schemaKey: MeasurementTechniqueType
  1040. - name: analytical technique
  1041. schemaKey: MeasurementTechniqueType
  1042. path: sub-437812/sub-437812_ses-848089631_behavior+image+ophys.nwb
  1043. publishedBy:
  1044. endDate: '2023-06-02T20:22:54.319314+00:00'
  1045. id: urn:uuid:afa5df40-02c4-463d-8706-506dbc25bf09
  1046. name: DANDI publish
  1047. schemaKey: PublishActivity
  1048. startDate: '2023-06-02T20:22:54.319314+00:00'
  1049. wasAssociatedWith:
  1050. - id: urn:uuid:ec272192-a28f-491f-b1ef-b0df85e0b64e
  1051. identifier: RRID:SCR_017571
  1052. name: DANDI API
  1053. schemaKey: Software
  1054. version: 0.1.0
  1055. schemaKey: Asset
  1056. schemaVersion: 0.6.4
  1057. variableMeasured:
  1058. - schemaKey: PropertyValue
  1059. value: PlaneSegmentation
  1060. - schemaKey: PropertyValue
  1061. value: ImagingPlane
  1062. - schemaKey: PropertyValue
  1063. value: BehavioralTimeSeries
  1064. - schemaKey: PropertyValue
  1065. value: ProcessingModule
  1066. - schemaKey: PropertyValue
  1067. value: OpticalChannel
  1068. wasAttributedTo:
  1069. - age:
  1070. schemaKey: PropertyValue
  1071. unitText: ISO-8601 duration
  1072. value: P135DT81771.284S
  1073. valueReference:
  1074. schemaKey: PropertyValue
  1075. value: dandi:BirthReference
  1076. genotype: Rbp4-Cre_KL100/wt;Camk2a-tTA/wt;Ai93(TITL-GCaMP6f)/wt
  1077. identifier: '437812'
  1078. schemaKey: Participant
  1079. sex:
  1080. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1081. name: Male
  1082. schemaKey: SexType
  1083. species:
  1084. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  1085. name: Mus musculus - House mouse
  1086. schemaKey: SpeciesType
  1087. wasGeneratedBy:
  1088. - description: Allen Institute OpenScope dataset
  1089. identifier: '848089631'
  1090. name: '848089631'
  1091. schemaKey: Session
  1092. startDate: '2019-04-09T15:42:51.284000-07:00'
  1093. - description: Metadata generated by DANDI cli
  1094. endDate: '2023-06-01T23:40:56.121452-07:00'
  1095. id: urn:uuid:0392d9ea-fb94-4a20-911f-7375040bd354
  1096. name: Metadata generation
  1097. schemaKey: Activity
  1098. startDate: '2023-06-01T23:39:49.954259-07:00'
  1099. wasAssociatedWith:
  1100. - identifier: RRID:SCR_019009
  1101. name: DANDI Command Line Interface
  1102. schemaKey: Software
  1103. url: https://github.com/dandi/dandi-cli
  1104. version: 0.54.0
  1105. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1106. access:
  1107. - schemaKey: AccessRequirements
  1108. status: dandi:OpenAccess
  1109. approach:
  1110. - name: microscopy approach; cell population imaging
  1111. schemaKey: ApproachType
  1112. - name: behavioral approach
  1113. schemaKey: ApproachType
  1114. blobDateModified: '2023-06-01T22:53:04.953563-07:00'
  1115. contentSize: 1219900140
  1116. contentUrl:
  1117. - https://api.dandiarchive.org/api/assets/3f523944-d0de-4f30-ba91-79656ca3ad26/download/
  1118. - https://dandiarchive.s3.amazonaws.com/blobs/dc0/758/dc075805-b760-4bb6-904a-172356931eaf
  1119. dateModified: '2023-06-01T23:41:19.607610-07:00'
  1120. datePublished: '2023-06-02T20:22:54.342117+00:00'
  1121. digest:
  1122. dandi:dandi-etag: 75ceb2e688ac5a20e1eef50d8ddab475-19
  1123. dandi:sha2-256: daaeafcb358fffe75d874580c37a8168a7633327ed8915452f81a291f8ecfd65
  1124. encodingFormat: application/x-nwb
  1125. id: dandiasset:3f523944-d0de-4f30-ba91-79656ca3ad26
  1126. identifier: 3f523944-d0de-4f30-ba91-79656ca3ad26
  1127. measurementTechnique:
  1128. - name: behavioral technique
  1129. schemaKey: MeasurementTechniqueType
  1130. - name: surgical technique
  1131. schemaKey: MeasurementTechniqueType
  1132. - name: analytical technique
  1133. schemaKey: MeasurementTechniqueType
  1134. path: sub-437812/sub-437812_ses-847488960_behavior+image+ophys.nwb
  1135. publishedBy:
  1136. endDate: '2023-06-02T20:22:54.342117+00:00'
  1137. id: urn:uuid:3f1c31c0-f075-4133-a029-64cc0d0656d3
  1138. name: DANDI publish
  1139. schemaKey: PublishActivity
  1140. startDate: '2023-06-02T20:22:54.342117+00:00'
  1141. wasAssociatedWith:
  1142. - id: urn:uuid:4ce43213-3d01-4b5a-af07-ceaf30eacc8b
  1143. identifier: RRID:SCR_017571
  1144. name: DANDI API
  1145. schemaKey: Software
  1146. version: 0.1.0
  1147. schemaKey: Asset
  1148. schemaVersion: 0.6.4
  1149. variableMeasured:
  1150. - schemaKey: PropertyValue
  1151. value: PlaneSegmentation
  1152. - schemaKey: PropertyValue
  1153. value: ImagingPlane
  1154. - schemaKey: PropertyValue
  1155. value: BehavioralTimeSeries
  1156. - schemaKey: PropertyValue
  1157. value: ProcessingModule
  1158. - schemaKey: PropertyValue
  1159. value: OpticalChannel
  1160. wasAttributedTo:
  1161. - age:
  1162. schemaKey: PropertyValue
  1163. unitText: ISO-8601 duration
  1164. value: P134DT82519.341S
  1165. valueReference:
  1166. schemaKey: PropertyValue
  1167. value: dandi:BirthReference
  1168. genotype: Rbp4-Cre_KL100/wt;Camk2a-tTA/wt;Ai93(TITL-GCaMP6f)/wt
  1169. identifier: '437812'
  1170. schemaKey: Participant
  1171. sex:
  1172. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1173. name: Male
  1174. schemaKey: SexType
  1175. species:
  1176. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  1177. name: Mus musculus - House mouse
  1178. schemaKey: SpeciesType
  1179. wasGeneratedBy:
  1180. - description: Allen Institute OpenScope dataset
  1181. identifier: '847488960'
  1182. name: '847488960'
  1183. schemaKey: Session
  1184. startDate: '2019-04-08T15:55:19.341000-07:00'
  1185. - description: Metadata generated by DANDI cli
  1186. endDate: '2023-06-01T23:41:19.607610-07:00'
  1187. id: urn:uuid:c5f8ea8e-cead-4f1b-91be-cc05eb279b54
  1188. name: Metadata generation
  1189. schemaKey: Activity
  1190. startDate: '2023-06-01T23:39:53.197295-07:00'
  1191. wasAssociatedWith:
  1192. - identifier: RRID:SCR_019009
  1193. name: DANDI Command Line Interface
  1194. schemaKey: Software
  1195. url: https://github.com/dandi/dandi-cli
  1196. version: 0.54.0
  1197. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1198. access:
  1199. - schemaKey: AccessRequirements
  1200. status: dandi:OpenAccess
  1201. approach:
  1202. - name: microscopy approach; cell population imaging
  1203. schemaKey: ApproachType
  1204. - name: behavioral approach
  1205. schemaKey: ApproachType
  1206. blobDateModified: '2023-06-01T23:06:30.220079-07:00'
  1207. contentSize: 1468978092
  1208. contentUrl:
  1209. - https://api.dandiarchive.org/api/assets/40084815-157f-4f5d-a4b7-d9ca37b8982b/download/
  1210. - https://dandiarchive.s3.amazonaws.com/blobs/e6d/e74/e6de747a-552e-46ba-8fd5-9eccb1589e40
  1211. dateModified: '2023-06-01T23:42:57.558510-07:00'
  1212. datePublished: '2023-06-02T20:22:54.347957+00:00'
  1213. digest:
  1214. dandi:dandi-etag: 051462ddad4411d315186f18ade337cb-22
  1215. dandi:sha2-256: 8aeaaa1e2a988a192e269895ec0850b58f4f67c5bf4d953b15abc3119f96ab02
  1216. encodingFormat: application/x-nwb
  1217. id: dandiasset:40084815-157f-4f5d-a4b7-d9ca37b8982b
  1218. identifier: 40084815-157f-4f5d-a4b7-d9ca37b8982b
  1219. measurementTechnique:
  1220. - name: behavioral technique
  1221. schemaKey: MeasurementTechniqueType
  1222. - name: surgical technique
  1223. schemaKey: MeasurementTechniqueType
  1224. - name: analytical technique
  1225. schemaKey: MeasurementTechniqueType
  1226. path: sub-438097/sub-438097_ses-830149321_behavior+image+ophys.nwb
  1227. publishedBy:
  1228. endDate: '2023-06-02T20:22:54.347957+00:00'
  1229. id: urn:uuid:1df27296-d84c-4f17-9381-0c100eba1220
  1230. name: DANDI publish
  1231. schemaKey: PublishActivity
  1232. startDate: '2023-06-02T20:22:54.347957+00:00'
  1233. wasAssociatedWith:
  1234. - id: urn:uuid:af74e054-0d33-435d-a1bb-8a5c076a3f8f
  1235. identifier: RRID:SCR_017571
  1236. name: DANDI API
  1237. schemaKey: Software
  1238. version: 0.1.0
  1239. schemaKey: Asset
  1240. schemaVersion: 0.6.4
  1241. variableMeasured:
  1242. - schemaKey: PropertyValue
  1243. value: PlaneSegmentation
  1244. - schemaKey: PropertyValue
  1245. value: ImagingPlane
  1246. - schemaKey: PropertyValue
  1247. value: BehavioralTimeSeries
  1248. - schemaKey: PropertyValue
  1249. value: ProcessingModule
  1250. - schemaKey: PropertyValue
  1251. value: OpticalChannel
  1252. wasAttributedTo:
  1253. - age:
  1254. schemaKey: PropertyValue
  1255. unitText: ISO-8601 duration
  1256. value: P94DT1744.129S
  1257. valueReference:
  1258. schemaKey: PropertyValue
  1259. value: dandi:BirthReference
  1260. genotype: Slc17a7-IRES2-Cre/wt;Camk2a-tTA/wt;Ai93(TITL-GCaMP6f)/wt
  1261. identifier: '438097'
  1262. schemaKey: Participant
  1263. sex:
  1264. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  1265. name: Female
  1266. schemaKey: SexType
  1267. species:
  1268. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  1269. name: Mus musculus - House mouse
  1270. schemaKey: SpeciesType
  1271. wasGeneratedBy:
  1272. - description: Allen Institute OpenScope dataset
  1273. identifier: '830149321'
  1274. name: '830149321'
  1275. schemaKey: Session
  1276. startDate: '2019-02-28T16:29:04.129000-08:00'
  1277. - description: Metadata generated by DANDI cli
  1278. endDate: '2023-06-01T23:42:57.558510-07:00'
  1279. id: urn:uuid:0bd504d2-e4f4-4d35-abfb-4ac2eb1814bc
  1280. name: Metadata generation
  1281. schemaKey: Activity
  1282. startDate: '2023-06-01T23:42:15.452649-07:00'
  1283. wasAssociatedWith:
  1284. - identifier: RRID:SCR_019009
  1285. name: DANDI Command Line Interface
  1286. schemaKey: Software
  1287. url: https://github.com/dandi/dandi-cli
  1288. version: 0.54.0
  1289. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1290. access:
  1291. - schemaKey: AccessRequirements
  1292. status: dandi:OpenAccess
  1293. approach:
  1294. - name: microscopy approach; cell population imaging
  1295. schemaKey: ApproachType
  1296. - name: behavioral approach
  1297. schemaKey: ApproachType
  1298. blobDateModified: '2023-06-01T23:05:41.475664-07:00'
  1299. contentSize: 1314829036
  1300. contentUrl:
  1301. - https://api.dandiarchive.org/api/assets/8031227c-4831-4fd1-bc5b-6143fc748d7a/download/
  1302. - https://dandiarchive.s3.amazonaws.com/blobs/9f6/c8a/9f6c8acd-22ee-4bd3-8f27-970f579677b0
  1303. dateModified: '2023-06-01T23:44:12.201354-07:00'
  1304. datePublished: '2023-06-02T20:22:54.324735+00:00'
  1305. digest:
  1306. dandi:dandi-etag: 120f137847fb891952dee7e6aa24ef59-20
  1307. dandi:sha2-256: 14a9ff1bb6aadf572d50f973965c0ca8a580a5ae3655fae98e12112941b4fd5c
  1308. encodingFormat: application/x-nwb
  1309. id: dandiasset:8031227c-4831-4fd1-bc5b-6143fc748d7a
  1310. identifier: 8031227c-4831-4fd1-bc5b-6143fc748d7a
  1311. measurementTechnique:
  1312. - name: behavioral technique
  1313. schemaKey: MeasurementTechniqueType
  1314. - name: surgical technique
  1315. schemaKey: MeasurementTechniqueType
  1316. - name: analytical technique
  1317. schemaKey: MeasurementTechniqueType
  1318. path: sub-438097/sub-438097_ses-830764081_behavior+image+ophys.nwb
  1319. publishedBy:
  1320. endDate: '2023-06-02T20:22:54.324735+00:00'
  1321. id: urn:uuid:97ca4a7c-0be5-4719-a7c7-f670bdbe68dc
  1322. name: DANDI publish
  1323. schemaKey: PublishActivity
  1324. startDate: '2023-06-02T20:22:54.324735+00:00'
  1325. wasAssociatedWith:
  1326. - id: urn:uuid:0995d653-867c-40c6-abeb-38bee3c03706
  1327. identifier: RRID:SCR_017571
  1328. name: DANDI API
  1329. schemaKey: Software
  1330. version: 0.1.0
  1331. schemaKey: Asset
  1332. schemaVersion: 0.6.4
  1333. variableMeasured:
  1334. - schemaKey: PropertyValue
  1335. value: PlaneSegmentation
  1336. - schemaKey: PropertyValue
  1337. value: ImagingPlane
  1338. - schemaKey: PropertyValue
  1339. value: BehavioralTimeSeries
  1340. - schemaKey: PropertyValue
  1341. value: ProcessingModule
  1342. - schemaKey: PropertyValue
  1343. value: OpticalChannel
  1344. wasAttributedTo:
  1345. - age:
  1346. schemaKey: PropertyValue
  1347. unitText: ISO-8601 duration
  1348. value: P95DT1462.765S
  1349. valueReference:
  1350. schemaKey: PropertyValue
  1351. value: dandi:BirthReference
  1352. genotype: Slc17a7-IRES2-Cre/wt;Camk2a-tTA/wt;Ai93(TITL-GCaMP6f)/wt
  1353. identifier: '438097'
  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_10090
  1361. name: Mus musculus - House mouse
  1362. schemaKey: SpeciesType
  1363. wasGeneratedBy:
  1364. - description: Allen Institute OpenScope dataset
  1365. identifier: '830764081'
  1366. name: '830764081'
  1367. schemaKey: Session
  1368. startDate: '2019-03-01T16:24:22.765000-08:00'
  1369. - description: Metadata generated by DANDI cli
  1370. endDate: '2023-06-01T23:44:12.201354-07:00'
  1371. id: urn:uuid:079b7c87-f1ca-4461-915a-7ca451669e6d
  1372. name: Metadata generation
  1373. schemaKey: Activity
  1374. startDate: '2023-06-01T23:42:50.130644-07: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.54.0
  1381. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1382. access:
  1383. - schemaKey: AccessRequirements
  1384. status: dandi:OpenAccess
  1385. approach:
  1386. - name: microscopy approach; cell population imaging
  1387. schemaKey: ApproachType
  1388. - name: behavioral approach
  1389. schemaKey: ApproachType
  1390. blobDateModified: '2023-06-01T23:02:28.770614-07:00'
  1391. contentSize: 1765675556
  1392. contentUrl:
  1393. - https://api.dandiarchive.org/api/assets/89ffebb6-c6da-4a62-8586-52300f40903a/download/
  1394. - https://dandiarchive.s3.amazonaws.com/blobs/001/948/00194868-a4cc-411e-858f-412954c5aba0
  1395. dateModified: '2023-06-01T23:44:25.073521-07:00'
  1396. datePublished: '2023-06-02T20:22:54.331092+00:00'
  1397. digest:
  1398. dandi:dandi-etag: a6532d8c1cd3c31f4655c22fd76d1ee1-27
  1399. dandi:sha2-256: 0a819dcbf0ffb6707fc98e298dc7052646a341157d2f2ee18c79681825331c9d
  1400. encodingFormat: application/x-nwb
  1401. id: dandiasset:89ffebb6-c6da-4a62-8586-52300f40903a
  1402. identifier: 89ffebb6-c6da-4a62-8586-52300f40903a
  1403. measurementTechnique:
  1404. - name: behavioral technique
  1405. schemaKey: MeasurementTechniqueType
  1406. - name: surgical technique
  1407. schemaKey: MeasurementTechniqueType
  1408. - name: analytical technique
  1409. schemaKey: MeasurementTechniqueType
  1410. path: sub-438378/sub-438378_ses-829524157_behavior+image+ophys.nwb
  1411. publishedBy:
  1412. endDate: '2023-06-02T20:22:54.331092+00:00'
  1413. id: urn:uuid:cb4791ff-6666-439c-8ca4-3756cb307c29
  1414. name: DANDI publish
  1415. schemaKey: PublishActivity
  1416. startDate: '2023-06-02T20:22:54.331092+00:00'
  1417. wasAssociatedWith:
  1418. - id: urn:uuid:83c9644f-f6af-4a08-8229-6b0873935561
  1419. identifier: RRID:SCR_017571
  1420. name: DANDI API
  1421. schemaKey: Software
  1422. version: 0.1.0
  1423. schemaKey: Asset
  1424. schemaVersion: 0.6.4
  1425. variableMeasured:
  1426. - schemaKey: PropertyValue
  1427. value: PlaneSegmentation
  1428. - schemaKey: PropertyValue
  1429. value: ImagingPlane
  1430. - schemaKey: PropertyValue
  1431. value: BehavioralTimeSeries
  1432. - schemaKey: PropertyValue
  1433. value: ProcessingModule
  1434. - schemaKey: PropertyValue
  1435. value: OpticalChannel
  1436. wasAttributedTo:
  1437. - age:
  1438. schemaKey: PropertyValue
  1439. unitText: ISO-8601 duration
  1440. value: P91DT4981.49S
  1441. valueReference:
  1442. schemaKey: PropertyValue
  1443. value: dandi:BirthReference
  1444. genotype: Slc17a7-IRES2-Cre/wt;Camk2a-tTA/wt;Ai94(TITL-GCaMP6s)/wt
  1445. identifier: '438378'
  1446. schemaKey: Participant
  1447. sex:
  1448. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1449. name: Male
  1450. schemaKey: SexType
  1451. species:
  1452. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  1453. name: Mus musculus - House mouse
  1454. schemaKey: SpeciesType
  1455. wasGeneratedBy:
  1456. - description: Allen Institute OpenScope dataset
  1457. identifier: '829524157'
  1458. name: '829524157'
  1459. schemaKey: Session
  1460. startDate: '2019-02-27T17:23:01.490000-08:00'
  1461. - description: Metadata generated by DANDI cli
  1462. endDate: '2023-06-01T23:44:25.073521-07:00'
  1463. id: urn:uuid:583e0018-29f1-4b19-be25-c1f00b6f6920
  1464. name: Metadata generation
  1465. schemaKey: Activity
  1466. startDate: '2023-06-01T23:43:30.538760-07:00'
  1467. wasAssociatedWith:
  1468. - identifier: RRID:SCR_019009
  1469. name: DANDI Command Line Interface
  1470. schemaKey: Software
  1471. url: https://github.com/dandi/dandi-cli
  1472. version: 0.54.0
  1473. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1474. access:
  1475. - schemaKey: AccessRequirements
  1476. status: dandi:OpenAccess
  1477. approach:
  1478. - name: microscopy approach; cell population imaging
  1479. schemaKey: ApproachType
  1480. - name: behavioral approach
  1481. schemaKey: ApproachType
  1482. blobDateModified: '2023-06-01T23:10:06.469263-07:00'
  1483. contentSize: 1297934732
  1484. contentUrl:
  1485. - https://api.dandiarchive.org/api/assets/03f0f885-2b96-4385-88ee-0aefb98c986e/download/
  1486. - https://dandiarchive.s3.amazonaws.com/blobs/930/375/930375fb-1be4-4a2d-a6e1-b63c46e7ddd7
  1487. dateModified: '2023-06-01T23:44:25.597823-07:00'
  1488. datePublished: '2023-06-02T20:22:54.300567+00:00'
  1489. digest:
  1490. dandi:dandi-etag: 05eb14d670b6ba7ade5d3bf0d6af2dde-20
  1491. dandi:sha2-256: af1366bdb9bd19caf2ddc95a0a23e51da4bf2cc815f4bc1528d24a0699c17a93
  1492. encodingFormat: application/x-nwb
  1493. id: dandiasset:03f0f885-2b96-4385-88ee-0aefb98c986e
  1494. identifier: 03f0f885-2b96-4385-88ee-0aefb98c986e
  1495. measurementTechnique:
  1496. - name: behavioral technique
  1497. schemaKey: MeasurementTechniqueType
  1498. - name: surgical technique
  1499. schemaKey: MeasurementTechniqueType
  1500. - name: analytical technique
  1501. schemaKey: MeasurementTechniqueType
  1502. path: sub-438097/sub-438097_ses-832175186_behavior+image+ophys.nwb
  1503. publishedBy:
  1504. endDate: '2023-06-02T20:22:54.300567+00:00'
  1505. id: urn:uuid:ce112f20-aa1d-4bd8-ae30-5260d3d0c796
  1506. name: DANDI publish
  1507. schemaKey: PublishActivity
  1508. startDate: '2023-06-02T20:22:54.300567+00:00'
  1509. wasAssociatedWith:
  1510. - id: urn:uuid:6b8f348d-5491-4cd3-a6d4-d01572269305
  1511. identifier: RRID:SCR_017571
  1512. name: DANDI API
  1513. schemaKey: Software
  1514. version: 0.1.0
  1515. schemaKey: Asset
  1516. schemaVersion: 0.6.4
  1517. variableMeasured:
  1518. - schemaKey: PropertyValue
  1519. value: PlaneSegmentation
  1520. - schemaKey: PropertyValue
  1521. value: ImagingPlane
  1522. - schemaKey: PropertyValue
  1523. value: BehavioralTimeSeries
  1524. - schemaKey: PropertyValue
  1525. value: ProcessingModule
  1526. - schemaKey: PropertyValue
  1527. value: OpticalChannel
  1528. wasAttributedTo:
  1529. - age:
  1530. schemaKey: PropertyValue
  1531. unitText: ISO-8601 duration
  1532. value: P99DT1369.376S
  1533. valueReference:
  1534. schemaKey: PropertyValue
  1535. value: dandi:BirthReference
  1536. genotype: Slc17a7-IRES2-Cre/wt;Camk2a-tTA/wt;Ai93(TITL-GCaMP6f)/wt
  1537. identifier: '438097'
  1538. schemaKey: Participant
  1539. sex:
  1540. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  1541. name: Female
  1542. schemaKey: SexType
  1543. species:
  1544. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  1545. name: Mus musculus - House mouse
  1546. schemaKey: SpeciesType
  1547. wasGeneratedBy:
  1548. - description: Allen Institute OpenScope dataset
  1549. identifier: '832175186'
  1550. name: '832175186'
  1551. schemaKey: Session
  1552. startDate: '2019-03-05T16:22:49.376000-08:00'
  1553. - description: Metadata generated by DANDI cli
  1554. endDate: '2023-06-01T23:44:25.597823-07:00'
  1555. id: urn:uuid:4b4362ee-60e5-4280-947b-edb2c7e59b14
  1556. name: Metadata generation
  1557. schemaKey: Activity
  1558. startDate: '2023-06-01T23:43:21.750267-07:00'
  1559. wasAssociatedWith:
  1560. - identifier: RRID:SCR_019009
  1561. name: DANDI Command Line Interface
  1562. schemaKey: Software
  1563. url: https://github.com/dandi/dandi-cli
  1564. version: 0.54.0
  1565. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1566. access:
  1567. - schemaKey: AccessRequirements
  1568. status: dandi:OpenAccess
  1569. approach:
  1570. - name: microscopy approach; cell population imaging
  1571. schemaKey: ApproachType
  1572. - name: behavioral approach
  1573. schemaKey: ApproachType
  1574. blobDateModified: '2023-06-01T23:07:33.600686-07:00'
  1575. contentSize: 1710793564
  1576. contentUrl:
  1577. - https://api.dandiarchive.org/api/assets/28860c7b-104a-44d6-88a6-f6c2051724c8/download/
  1578. - https://dandiarchive.s3.amazonaws.com/blobs/c0d/11a/c0d11a58-0ee1-4e3d-940a-c1a8b28a3648
  1579. dateModified: '2023-06-01T23:46:28.064957-07:00'
  1580. datePublished: '2023-06-02T20:22:54.353738+00:00'
  1581. digest:
  1582. dandi:dandi-etag: c1fae5d96cc8466dfe8d0351e2741b29-26
  1583. dandi:sha2-256: 1d998a1bdea49d109829974b5bc3e0f1d050f48c2b81dde2d023707c7a5ed761
  1584. encodingFormat: application/x-nwb
  1585. id: dandiasset:28860c7b-104a-44d6-88a6-f6c2051724c8
  1586. identifier: 28860c7b-104a-44d6-88a6-f6c2051724c8
  1587. measurementTechnique:
  1588. - name: behavioral technique
  1589. schemaKey: MeasurementTechniqueType
  1590. - name: surgical technique
  1591. schemaKey: MeasurementTechniqueType
  1592. - name: analytical technique
  1593. schemaKey: MeasurementTechniqueType
  1594. path: sub-438378/sub-438378_ses-830766957_behavior+image+ophys.nwb
  1595. publishedBy:
  1596. endDate: '2023-06-02T20:22:54.353738+00:00'
  1597. id: urn:uuid:dccd6441-a420-4c2b-b83f-7552bed10f10
  1598. name: DANDI publish
  1599. schemaKey: PublishActivity
  1600. startDate: '2023-06-02T20:22:54.353738+00:00'
  1601. wasAssociatedWith:
  1602. - id: urn:uuid:6d0a944c-b187-4084-ac42-eac9e2b627ac
  1603. identifier: RRID:SCR_017571
  1604. name: DANDI API
  1605. schemaKey: Software
  1606. version: 0.1.0
  1607. schemaKey: Asset
  1608. schemaVersion: 0.6.4
  1609. variableMeasured:
  1610. - schemaKey: PropertyValue
  1611. value: PlaneSegmentation
  1612. - schemaKey: PropertyValue
  1613. value: ImagingPlane
  1614. - schemaKey: PropertyValue
  1615. value: BehavioralTimeSeries
  1616. - schemaKey: PropertyValue
  1617. value: ProcessingModule
  1618. - schemaKey: PropertyValue
  1619. value: OpticalChannel
  1620. wasAttributedTo:
  1621. - age:
  1622. schemaKey: PropertyValue
  1623. unitText: ISO-8601 duration
  1624. value: P93DT2858.698S
  1625. valueReference:
  1626. schemaKey: PropertyValue
  1627. value: dandi:BirthReference
  1628. genotype: Slc17a7-IRES2-Cre/wt;Camk2a-tTA/wt;Ai94(TITL-GCaMP6s)/wt
  1629. identifier: '438378'
  1630. schemaKey: Participant
  1631. sex:
  1632. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1633. name: Male
  1634. schemaKey: SexType
  1635. species:
  1636. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  1637. name: Mus musculus - House mouse
  1638. schemaKey: SpeciesType
  1639. wasGeneratedBy:
  1640. - description: Allen Institute OpenScope dataset
  1641. identifier: '830766957'
  1642. name: '830766957'
  1643. schemaKey: Session
  1644. startDate: '2019-03-01T16:47:38.698000-08:00'
  1645. - description: Metadata generated by DANDI cli
  1646. endDate: '2023-06-01T23:46:28.064957-07:00'
  1647. id: urn:uuid:b761c8e9-a512-41e6-b970-411028a25ffa
  1648. name: Metadata generation
  1649. schemaKey: Activity
  1650. startDate: '2023-06-01T23:45:34.182541-07:00'
  1651. wasAssociatedWith:
  1652. - identifier: RRID:SCR_019009
  1653. name: DANDI Command Line Interface
  1654. schemaKey: Software
  1655. url: https://github.com/dandi/dandi-cli
  1656. version: 0.54.0
  1657. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1658. access:
  1659. - schemaKey: AccessRequirements
  1660. status: dandi:OpenAccess
  1661. approach:
  1662. - name: microscopy approach; cell population imaging
  1663. schemaKey: ApproachType
  1664. - name: behavioral approach
  1665. schemaKey: ApproachType
  1666. blobDateModified: '2023-06-01T23:03:38.109377-07:00'
  1667. contentSize: 1431472468
  1668. contentUrl:
  1669. - https://api.dandiarchive.org/api/assets/53d339cd-bea4-44a8-ba4b-f704b9f8152a/download/
  1670. - https://dandiarchive.s3.amazonaws.com/blobs/10a/7b8/10a7b805-db0a-4991-99a4-605881d45b93
  1671. dateModified: '2023-06-01T23:47:19.267255-07:00'
  1672. datePublished: '2023-06-02T20:22:54.359388+00:00'
  1673. digest:
  1674. dandi:dandi-etag: 26f6886109142fd42b1580fcd27760eb-22
  1675. dandi:sha2-256: e928cbb9b0ddb1b7f2d4e67a16ab13cf54709d000bc478e3aa78c132ea5f95ce
  1676. encodingFormat: application/x-nwb
  1677. id: dandiasset:53d339cd-bea4-44a8-ba4b-f704b9f8152a
  1678. identifier: 53d339cd-bea4-44a8-ba4b-f704b9f8152a
  1679. measurementTechnique:
  1680. - name: behavioral technique
  1681. schemaKey: MeasurementTechniqueType
  1682. - name: surgical technique
  1683. schemaKey: MeasurementTechniqueType
  1684. - name: analytical technique
  1685. schemaKey: MeasurementTechniqueType
  1686. path: sub-438378/sub-438378_ses-830149483_behavior+image+ophys.nwb
  1687. publishedBy:
  1688. endDate: '2023-06-02T20:22:54.359388+00:00'
  1689. id: urn:uuid:95b82764-9499-445e-acf8-c177413770d6
  1690. name: DANDI publish
  1691. schemaKey: PublishActivity
  1692. startDate: '2023-06-02T20:22:54.359388+00:00'
  1693. wasAssociatedWith:
  1694. - id: urn:uuid:5ae1a2b5-47ad-4075-b16a-7c1eaeeb80c2
  1695. identifier: RRID:SCR_017571
  1696. name: DANDI API
  1697. schemaKey: Software
  1698. version: 0.1.0
  1699. schemaKey: Asset
  1700. schemaVersion: 0.6.4
  1701. variableMeasured:
  1702. - schemaKey: PropertyValue
  1703. value: PlaneSegmentation
  1704. - schemaKey: PropertyValue
  1705. value: ImagingPlane
  1706. - schemaKey: PropertyValue
  1707. value: BehavioralTimeSeries
  1708. - schemaKey: PropertyValue
  1709. value: ProcessingModule
  1710. - schemaKey: PropertyValue
  1711. value: OpticalChannel
  1712. wasAttributedTo:
  1713. - age:
  1714. schemaKey: PropertyValue
  1715. unitText: ISO-8601 duration
  1716. value: P92DT3166.993S
  1717. valueReference:
  1718. schemaKey: PropertyValue
  1719. value: dandi:BirthReference
  1720. genotype: Slc17a7-IRES2-Cre/wt;Camk2a-tTA/wt;Ai94(TITL-GCaMP6s)/wt
  1721. identifier: '438378'
  1722. schemaKey: Participant
  1723. sex:
  1724. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1725. name: Male
  1726. schemaKey: SexType
  1727. species:
  1728. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  1729. name: Mus musculus - House mouse
  1730. schemaKey: SpeciesType
  1731. wasGeneratedBy:
  1732. - description: Allen Institute OpenScope dataset
  1733. identifier: '830149483'
  1734. name: '830149483'
  1735. schemaKey: Session
  1736. startDate: '2019-02-28T16:52:46.993000-08:00'
  1737. - description: Metadata generated by DANDI cli
  1738. endDate: '2023-06-01T23:47:19.267255-07:00'
  1739. id: urn:uuid:c84ae78f-de93-4976-81ae-36cb1eb0082b
  1740. name: Metadata generation
  1741. schemaKey: Activity
  1742. startDate: '2023-06-01T23:45:52.255154-07:00'
  1743. wasAssociatedWith:
  1744. - identifier: RRID:SCR_019009
  1745. name: DANDI Command Line Interface
  1746. schemaKey: Software
  1747. url: https://github.com/dandi/dandi-cli
  1748. version: 0.54.0
  1749. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1750. access:
  1751. - schemaKey: AccessRequirements
  1752. status: dandi:OpenAccess
  1753. approach:
  1754. - name: microscopy approach; cell population imaging
  1755. schemaKey: ApproachType
  1756. - name: behavioral approach
  1757. schemaKey: ApproachType
  1758. blobDateModified: '2023-06-01T22:53:28.592502-07:00'
  1759. contentSize: 1524570460
  1760. contentUrl:
  1761. - https://api.dandiarchive.org/api/assets/732e6deb-4222-4924-82b0-99e633d8d5e4/download/
  1762. - https://dandiarchive.s3.amazonaws.com/blobs/a5c/7fb/a5c7fb75-e9e9-4b07-aeba-c061f103d1b3
  1763. dateModified: '2023-06-01T23:48:27.848913-07:00'
  1764. datePublished: '2023-06-02T20:22:54.377024+00:00'
  1765. digest:
  1766. dandi:dandi-etag: daa19432f599c64f1d3a8aeeff0152eb-23
  1767. dandi:sha2-256: 8e98c15a4982bd34aa419548a51279196ec0aa49ba94e05e9a84def69c16b89d
  1768. encodingFormat: application/x-nwb
  1769. id: dandiasset:732e6deb-4222-4924-82b0-99e633d8d5e4
  1770. identifier: 732e6deb-4222-4924-82b0-99e633d8d5e4
  1771. measurementTechnique:
  1772. - name: behavioral technique
  1773. schemaKey: MeasurementTechniqueType
  1774. - name: surgical technique
  1775. schemaKey: MeasurementTechniqueType
  1776. - name: analytical technique
  1777. schemaKey: MeasurementTechniqueType
  1778. path: sub-438378/sub-438378_ses-831764403_behavior+image+ophys.nwb
  1779. publishedBy:
  1780. endDate: '2023-06-02T20:22:54.377024+00:00'
  1781. id: urn:uuid:c3d4efae-9703-466a-a9ba-3e9872928219
  1782. name: DANDI publish
  1783. schemaKey: PublishActivity
  1784. startDate: '2023-06-02T20:22:54.377024+00:00'
  1785. wasAssociatedWith:
  1786. - id: urn:uuid:87cfead8-680b-431e-9b5d-1311d3d0b747
  1787. identifier: RRID:SCR_017571
  1788. name: DANDI API
  1789. schemaKey: Software
  1790. version: 0.1.0
  1791. schemaKey: Asset
  1792. schemaVersion: 0.6.4
  1793. variableMeasured:
  1794. - schemaKey: PropertyValue
  1795. value: PlaneSegmentation
  1796. - schemaKey: PropertyValue
  1797. value: ImagingPlane
  1798. - schemaKey: PropertyValue
  1799. value: BehavioralTimeSeries
  1800. - schemaKey: PropertyValue
  1801. value: ProcessingModule
  1802. - schemaKey: PropertyValue
  1803. value: OpticalChannel
  1804. wasAttributedTo:
  1805. - age:
  1806. schemaKey: PropertyValue
  1807. unitText: ISO-8601 duration
  1808. value: P96DT2627.462S
  1809. valueReference:
  1810. schemaKey: PropertyValue
  1811. value: dandi:BirthReference
  1812. genotype: Slc17a7-IRES2-Cre/wt;Camk2a-tTA/wt;Ai94(TITL-GCaMP6s)/wt
  1813. identifier: '438378'
  1814. schemaKey: Participant
  1815. sex:
  1816. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1817. name: Male
  1818. schemaKey: SexType
  1819. species:
  1820. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  1821. name: Mus musculus - House mouse
  1822. schemaKey: SpeciesType
  1823. wasGeneratedBy:
  1824. - description: Allen Institute OpenScope dataset
  1825. identifier: '831764403'
  1826. name: '831764403'
  1827. schemaKey: Session
  1828. startDate: '2019-03-04T16:43:47.462000-08:00'
  1829. - description: Metadata generated by DANDI cli
  1830. endDate: '2023-06-01T23:48:27.848913-07:00'
  1831. id: urn:uuid:7308409e-4cbb-47c6-b5b6-bc29eaee4a96
  1832. name: Metadata generation
  1833. schemaKey: Activity
  1834. startDate: '2023-06-01T23:47:16.452981-07:00'
  1835. wasAssociatedWith:
  1836. - identifier: RRID:SCR_019009
  1837. name: DANDI Command Line Interface
  1838. schemaKey: Software
  1839. url: https://github.com/dandi/dandi-cli
  1840. version: 0.54.0
  1841. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1842. access:
  1843. - schemaKey: AccessRequirements
  1844. status: dandi:OpenAccess
  1845. approach:
  1846. - name: microscopy approach; cell population imaging
  1847. schemaKey: ApproachType
  1848. - name: behavioral approach
  1849. schemaKey: ApproachType
  1850. blobDateModified: '2023-06-01T22:54:42.878208-07:00'
  1851. contentSize: 1410288068
  1852. contentUrl:
  1853. - https://api.dandiarchive.org/api/assets/e6c29b0b-b173-4ae0-8780-3c3a6cf8ae5b/download/
  1854. - https://dandiarchive.s3.amazonaws.com/blobs/3d2/f61/3d2f6102-ee72-42d8-97e5-b4d48d1a2ef1
  1855. dateModified: '2023-06-01T23:48:31.255681-07:00'
  1856. datePublished: '2023-06-02T20:22:54.390530+00:00'
  1857. digest:
  1858. dandi:dandi-etag: 901438a33fc5c89cff698533b1871778-22
  1859. dandi:sha2-256: 423f6375e5f421c13bba7e0be040016e8a220580d0329606ca7d597b85f007ab
  1860. encodingFormat: application/x-nwb
  1861. id: dandiasset:e6c29b0b-b173-4ae0-8780-3c3a6cf8ae5b
  1862. identifier: e6c29b0b-b173-4ae0-8780-3c3a6cf8ae5b
  1863. measurementTechnique:
  1864. - name: behavioral technique
  1865. schemaKey: MeasurementTechniqueType
  1866. - name: surgical technique
  1867. schemaKey: MeasurementTechniqueType
  1868. - name: analytical technique
  1869. schemaKey: MeasurementTechniqueType
  1870. path: sub-438382/sub-438382_ses-834009644_behavior+image+ophys.nwb
  1871. publishedBy:
  1872. endDate: '2023-06-02T20:22:54.390530+00:00'
  1873. id: urn:uuid:9b4708b7-dbb2-42e6-bd0d-1d48aa3212c2
  1874. name: DANDI publish
  1875. schemaKey: PublishActivity
  1876. startDate: '2023-06-02T20:22:54.390530+00:00'
  1877. wasAssociatedWith:
  1878. - id: urn:uuid:2b6aa543-0377-4d86-a4c6-680267d75c77
  1879. identifier: RRID:SCR_017571
  1880. name: DANDI API
  1881. schemaKey: Software
  1882. version: 0.1.0
  1883. schemaKey: Asset
  1884. schemaVersion: 0.6.4
  1885. variableMeasured:
  1886. - schemaKey: PropertyValue
  1887. value: PlaneSegmentation
  1888. - schemaKey: PropertyValue
  1889. value: ImagingPlane
  1890. - schemaKey: PropertyValue
  1891. value: BehavioralTimeSeries
  1892. - schemaKey: PropertyValue
  1893. value: ProcessingModule
  1894. - schemaKey: PropertyValue
  1895. value: OpticalChannel
  1896. wasAttributedTo:
  1897. - age:
  1898. schemaKey: PropertyValue
  1899. unitText: ISO-8601 duration
  1900. value: P99DT17813.814S
  1901. valueReference:
  1902. schemaKey: PropertyValue
  1903. value: dandi:BirthReference
  1904. genotype: Slc17a7-IRES2-Cre/wt;Camk2a-tTA/wt;Ai94(TITL-GCaMP6s)/wt
  1905. identifier: '438382'
  1906. schemaKey: Participant
  1907. sex:
  1908. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  1909. name: Female
  1910. schemaKey: SexType
  1911. species:
  1912. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  1913. name: Mus musculus - House mouse
  1914. schemaKey: SpeciesType
  1915. wasGeneratedBy:
  1916. - description: Allen Institute OpenScope dataset
  1917. identifier: '834009644'
  1918. name: '834009644'
  1919. schemaKey: Session
  1920. startDate: '2019-03-07T20:56:53.814000-08:00'
  1921. - description: Metadata generated by DANDI cli
  1922. endDate: '2023-06-01T23:48:31.255681-07:00'
  1923. id: urn:uuid:0dbfb4fc-a322-425f-a775-c3b4698a404a
  1924. name: Metadata generation
  1925. schemaKey: Activity
  1926. startDate: '2023-06-01T23:47:23.253423-07:00'
  1927. wasAssociatedWith:
  1928. - identifier: RRID:SCR_019009
  1929. name: DANDI Command Line Interface
  1930. schemaKey: Software
  1931. url: https://github.com/dandi/dandi-cli
  1932. version: 0.54.0
  1933. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1934. access:
  1935. - schemaKey: AccessRequirements
  1936. status: dandi:OpenAccess
  1937. approach:
  1938. - name: microscopy approach; cell population imaging
  1939. schemaKey: ApproachType
  1940. - name: behavioral approach
  1941. schemaKey: ApproachType
  1942. blobDateModified: '2023-06-01T23:01:26.046260-07:00'
  1943. contentSize: 1653602460
  1944. contentUrl:
  1945. - https://api.dandiarchive.org/api/assets/4388ec95-eca0-470e-bcb3-784e4d2197d3/download/
  1946. - https://dandiarchive.s3.amazonaws.com/blobs/ab0/c10/ab0c1062-6d33-47fd-8d4b-1f8d0c270c86
  1947. dateModified: '2023-06-01T23:48:31.462891-07:00'
  1948. datePublished: '2023-06-02T20:22:54.413599+00:00'
  1949. digest:
  1950. dandi:dandi-etag: 30e5f62ce72c242e9d99e015f0d16beb-25
  1951. dandi:sha2-256: 946acfcedbc5938b209f70fa640f2e35d5fd73abdb0ea20d38ff65b20686a401
  1952. encodingFormat: application/x-nwb
  1953. id: dandiasset:4388ec95-eca0-470e-bcb3-784e4d2197d3
  1954. identifier: 4388ec95-eca0-470e-bcb3-784e4d2197d3
  1955. measurementTechnique:
  1956. - name: behavioral technique
  1957. schemaKey: MeasurementTechniqueType
  1958. - name: surgical technique
  1959. schemaKey: MeasurementTechniqueType
  1960. - name: analytical technique
  1961. schemaKey: MeasurementTechniqueType
  1962. path: sub-438382/sub-438382_ses-833145852_behavior+image+ophys.nwb
  1963. publishedBy:
  1964. endDate: '2023-06-02T20:22:54.413599+00:00'
  1965. id: urn:uuid:3b17feb3-eb57-4cd7-ae97-a9c033e29cec
  1966. name: DANDI publish
  1967. schemaKey: PublishActivity
  1968. startDate: '2023-06-02T20:22:54.413599+00:00'
  1969. wasAssociatedWith:
  1970. - id: urn:uuid:d6f3fa7d-4a78-401a-b87c-2b61225d7f82
  1971. identifier: RRID:SCR_017571
  1972. name: DANDI API
  1973. schemaKey: Software
  1974. version: 0.1.0
  1975. schemaKey: Asset
  1976. schemaVersion: 0.6.4
  1977. variableMeasured:
  1978. - schemaKey: PropertyValue
  1979. value: PlaneSegmentation
  1980. - schemaKey: PropertyValue
  1981. value: ImagingPlane
  1982. - schemaKey: PropertyValue
  1983. value: BehavioralTimeSeries
  1984. - schemaKey: PropertyValue
  1985. value: ProcessingModule
  1986. - schemaKey: PropertyValue
  1987. value: OpticalChannel
  1988. wasAttributedTo:
  1989. - age:
  1990. schemaKey: PropertyValue
  1991. unitText: ISO-8601 duration
  1992. value: P98DT16105.05S
  1993. valueReference:
  1994. schemaKey: PropertyValue
  1995. value: dandi:BirthReference
  1996. genotype: Slc17a7-IRES2-Cre/wt;Camk2a-tTA/wt;Ai94(TITL-GCaMP6s)/wt
  1997. identifier: '438382'
  1998. schemaKey: Participant
  1999. sex:
  2000. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  2001. name: Female
  2002. schemaKey: SexType
  2003. species:
  2004. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  2005. name: Mus musculus - House mouse
  2006. schemaKey: SpeciesType
  2007. wasGeneratedBy:
  2008. - description: Allen Institute OpenScope dataset
  2009. identifier: '833145852'
  2010. name: '833145852'
  2011. schemaKey: Session
  2012. startDate: '2019-03-06T20:28:25.050000-08:00'
  2013. - description: Metadata generated by DANDI cli
  2014. endDate: '2023-06-01T23:48:31.462891-07:00'
  2015. id: urn:uuid:3d65ba9c-1b1d-443d-be1e-3475534b3705
  2016. name: Metadata generation
  2017. schemaKey: Activity
  2018. startDate: '2023-06-01T23:47:21.869497-07:00'
  2019. wasAssociatedWith:
  2020. - identifier: RRID:SCR_019009
  2021. name: DANDI Command Line Interface
  2022. schemaKey: Software
  2023. url: https://github.com/dandi/dandi-cli
  2024. version: 0.54.0
  2025. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2026. access:
  2027. - schemaKey: AccessRequirements
  2028. status: dandi:OpenAccess
  2029. approach:
  2030. - name: microscopy approach; cell population imaging
  2031. schemaKey: ApproachType
  2032. - name: behavioral approach
  2033. schemaKey: ApproachType
  2034. blobDateModified: '2023-06-01T22:56:27.450950-07:00'
  2035. contentSize: 1393376532
  2036. contentUrl:
  2037. - https://api.dandiarchive.org/api/assets/84f667ce-f85d-45f3-96a2-2bd09f09ed9f/download/
  2038. - https://dandiarchive.s3.amazonaws.com/blobs/d28/762/d28762b6-9cc0-454e-9a3c-0cddd6b309cb
  2039. dateModified: '2023-06-01T23:50:28.472797-07:00'
  2040. datePublished: '2023-06-02T20:22:54.365264+00:00'
  2041. digest:
  2042. dandi:dandi-etag: 4cb9967dfd1a206f55a92d5297ae2822-21
  2043. dandi:sha2-256: d6c6cd73c5a7bc09bbf0c473a5f3cdf55ad35875cc43cd95992420767cc16712
  2044. encodingFormat: application/x-nwb
  2045. id: dandiasset:84f667ce-f85d-45f3-96a2-2bd09f09ed9f
  2046. identifier: 84f667ce-f85d-45f3-96a2-2bd09f09ed9f
  2047. measurementTechnique:
  2048. - name: behavioral technique
  2049. schemaKey: MeasurementTechniqueType
  2050. - name: surgical technique
  2051. schemaKey: MeasurementTechniqueType
  2052. - name: analytical technique
  2053. schemaKey: MeasurementTechniqueType
  2054. path: sub-438382/sub-438382_ses-835972901_behavior+image+ophys.nwb
  2055. publishedBy:
  2056. endDate: '2023-06-02T20:22:54.365264+00:00'
  2057. id: urn:uuid:f0c1aea0-1e1b-402c-bde0-4c6bca016e22
  2058. name: DANDI publish
  2059. schemaKey: PublishActivity
  2060. startDate: '2023-06-02T20:22:54.365264+00:00'
  2061. wasAssociatedWith:
  2062. - id: urn:uuid:a9a7e7bf-6e3e-4cad-bc03-dc26d95c3eeb
  2063. identifier: RRID:SCR_017571
  2064. name: DANDI API
  2065. schemaKey: Software
  2066. version: 0.1.0
  2067. schemaKey: Asset
  2068. schemaVersion: 0.6.4
  2069. variableMeasured:
  2070. - schemaKey: PropertyValue
  2071. value: PlaneSegmentation
  2072. - schemaKey: PropertyValue
  2073. value: ImagingPlane
  2074. - schemaKey: PropertyValue
  2075. value: BehavioralTimeSeries
  2076. - schemaKey: PropertyValue
  2077. value: ProcessingModule
  2078. - schemaKey: PropertyValue
  2079. value: OpticalChannel
  2080. wasAttributedTo:
  2081. - age:
  2082. schemaKey: PropertyValue
  2083. unitText: ISO-8601 duration
  2084. value: P104DT10795.727S
  2085. valueReference:
  2086. schemaKey: PropertyValue
  2087. value: dandi:BirthReference
  2088. genotype: Slc17a7-IRES2-Cre/wt;Camk2a-tTA/wt;Ai94(TITL-GCaMP6s)/wt
  2089. identifier: '438382'
  2090. schemaKey: Participant
  2091. sex:
  2092. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  2093. name: Female
  2094. schemaKey: SexType
  2095. species:
  2096. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  2097. name: Mus musculus - House mouse
  2098. schemaKey: SpeciesType
  2099. wasGeneratedBy:
  2100. - description: Allen Institute OpenScope dataset
  2101. identifier: '835972901'
  2102. name: '835972901'
  2103. schemaKey: Session
  2104. startDate: '2019-03-12T19:59:55.727000-07:00'
  2105. - description: Metadata generated by DANDI cli
  2106. endDate: '2023-06-01T23:50:28.472797-07:00'
  2107. id: urn:uuid:997715a6-dfd1-42bd-8416-75602d823cbe
  2108. name: Metadata generation
  2109. schemaKey: Activity
  2110. startDate: '2023-06-01T23:49:26.940419-07:00'
  2111. wasAssociatedWith:
  2112. - identifier: RRID:SCR_019009
  2113. name: DANDI Command Line Interface
  2114. schemaKey: Software
  2115. url: https://github.com/dandi/dandi-cli
  2116. version: 0.54.0
  2117. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2118. access:
  2119. - schemaKey: AccessRequirements
  2120. status: dandi:OpenAccess
  2121. approach:
  2122. - name: microscopy approach; cell population imaging
  2123. schemaKey: ApproachType
  2124. - name: behavioral approach
  2125. schemaKey: ApproachType
  2126. blobDateModified: '2023-06-01T23:09:35.814908-07:00'
  2127. contentSize: 1808860072
  2128. contentUrl:
  2129. - https://api.dandiarchive.org/api/assets/180aeab3-4e83-4d2a-98f5-4de1a744dea3/download/
  2130. - https://dandiarchive.s3.amazonaws.com/blobs/665/ec1/665ec16a-5969-4465-b25f-4ef7f71e065c
  2131. dateModified: '2023-06-01T23:50:52.592718-07:00'
  2132. datePublished: '2023-06-02T20:22:54.396206+00:00'
  2133. digest:
  2134. dandi:dandi-etag: 8ae180308c8e1aeed6b3b04f209d4bb1-27
  2135. dandi:sha2-256: 5b6293e2299be7a29c9eb8a71a6fa9a27fa9f988896ca4540b355bca350617ab
  2136. encodingFormat: application/x-nwb
  2137. id: dandiasset:180aeab3-4e83-4d2a-98f5-4de1a744dea3
  2138. identifier: 180aeab3-4e83-4d2a-98f5-4de1a744dea3
  2139. measurementTechnique:
  2140. - name: behavioral technique
  2141. schemaKey: MeasurementTechniqueType
  2142. - name: surgical technique
  2143. schemaKey: MeasurementTechniqueType
  2144. - name: analytical technique
  2145. schemaKey: MeasurementTechniqueType
  2146. path: sub-438384/sub-438384_ses-834399858_behavior+image+ophys.nwb
  2147. publishedBy:
  2148. endDate: '2023-06-02T20:22:54.396206+00:00'
  2149. id: urn:uuid:3cfc24c5-edc8-4081-83a9-1e113595d5be
  2150. name: DANDI publish
  2151. schemaKey: PublishActivity
  2152. startDate: '2023-06-02T20:22:54.396206+00:00'
  2153. wasAssociatedWith:
  2154. - id: urn:uuid:3e9221fc-d57d-4c2c-95b4-924a12b9a35c
  2155. identifier: RRID:SCR_017571
  2156. name: DANDI API
  2157. schemaKey: Software
  2158. version: 0.1.0
  2159. schemaKey: Asset
  2160. schemaVersion: 0.6.4
  2161. variableMeasured:
  2162. - schemaKey: PropertyValue
  2163. value: PlaneSegmentation
  2164. - schemaKey: PropertyValue
  2165. value: ImagingPlane
  2166. - schemaKey: PropertyValue
  2167. value: BehavioralTimeSeries
  2168. - schemaKey: PropertyValue
  2169. value: ProcessingModule
  2170. - schemaKey: PropertyValue
  2171. value: OpticalChannel
  2172. wasAttributedTo:
  2173. - age:
  2174. schemaKey: PropertyValue
  2175. unitText: ISO-8601 duration
  2176. value: P100DT1870.063S
  2177. valueReference:
  2178. schemaKey: PropertyValue
  2179. value: dandi:BirthReference
  2180. genotype: Slc17a7-IRES2-Cre/wt;Camk2a-tTA/wt;Ai94(TITL-GCaMP6s)/wt
  2181. identifier: '438384'
  2182. schemaKey: Participant
  2183. sex:
  2184. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  2185. name: Female
  2186. schemaKey: SexType
  2187. species:
  2188. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  2189. name: Mus musculus - House mouse
  2190. schemaKey: SpeciesType
  2191. wasGeneratedBy:
  2192. - description: Allen Institute OpenScope dataset
  2193. identifier: '834399858'
  2194. name: '834399858'
  2195. schemaKey: Session
  2196. startDate: '2019-03-08T16:31:10.063000-08:00'
  2197. - description: Metadata generated by DANDI cli
  2198. endDate: '2023-06-01T23:50:52.592718-07:00'
  2199. id: urn:uuid:ce4a791d-2255-45bb-ad3e-f1a6c3259b7d
  2200. name: Metadata generation
  2201. schemaKey: Activity
  2202. startDate: '2023-06-01T23:50:00.391907-07:00'
  2203. wasAssociatedWith:
  2204. - identifier: RRID:SCR_019009
  2205. name: DANDI Command Line Interface
  2206. schemaKey: Software
  2207. url: https://github.com/dandi/dandi-cli
  2208. version: 0.54.0
  2209. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2210. access:
  2211. - schemaKey: AccessRequirements
  2212. status: dandi:OpenAccess
  2213. approach:
  2214. - name: microscopy approach; cell population imaging
  2215. schemaKey: ApproachType
  2216. - name: behavioral approach
  2217. schemaKey: ApproachType
  2218. blobDateModified: '2023-06-01T23:02:26.676191-07:00'
  2219. contentSize: 1920868428
  2220. contentUrl:
  2221. - https://api.dandiarchive.org/api/assets/3726c996-0460-4d56-8998-bc77828fc4f9/download/
  2222. - https://dandiarchive.s3.amazonaws.com/blobs/9c8/a99/9c8a9919-e57c-4233-96ec-b9de3aa22025
  2223. dateModified: '2023-06-01T23:52:53.491083-07:00'
  2224. datePublished: '2023-06-02T20:22:54.371351+00:00'
  2225. digest:
  2226. dandi:dandi-etag: b28aa3799ac3542195097b99f6b52a0b-29
  2227. dandi:sha2-256: e9153cc89a85a1d8cf5ee05688baf8de04985aa4982bd4450a8af70d0d647547
  2228. encodingFormat: application/x-nwb
  2229. id: dandiasset:3726c996-0460-4d56-8998-bc77828fc4f9
  2230. identifier: 3726c996-0460-4d56-8998-bc77828fc4f9
  2231. measurementTechnique:
  2232. - name: behavioral technique
  2233. schemaKey: MeasurementTechniqueType
  2234. - name: surgical technique
  2235. schemaKey: MeasurementTechniqueType
  2236. - name: analytical technique
  2237. schemaKey: MeasurementTechniqueType
  2238. path: sub-438384/sub-438384_ses-835345797_behavior+image+ophys.nwb
  2239. publishedBy:
  2240. endDate: '2023-06-02T20:22:54.371351+00:00'
  2241. id: urn:uuid:495dbe2b-0786-4455-aa2b-f25768d07c93
  2242. name: DANDI publish
  2243. schemaKey: PublishActivity
  2244. startDate: '2023-06-02T20:22:54.371351+00:00'
  2245. wasAssociatedWith:
  2246. - id: urn:uuid:d3492191-d480-4b48-bf8b-5374a5cf6efb
  2247. identifier: RRID:SCR_017571
  2248. name: DANDI API
  2249. schemaKey: Software
  2250. version: 0.1.0
  2251. schemaKey: Asset
  2252. schemaVersion: 0.6.4
  2253. variableMeasured:
  2254. - schemaKey: PropertyValue
  2255. value: PlaneSegmentation
  2256. - schemaKey: PropertyValue
  2257. value: ImagingPlane
  2258. - schemaKey: PropertyValue
  2259. value: BehavioralTimeSeries
  2260. - schemaKey: PropertyValue
  2261. value: ProcessingModule
  2262. - schemaKey: PropertyValue
  2263. value: OpticalChannel
  2264. wasAttributedTo:
  2265. - age:
  2266. schemaKey: PropertyValue
  2267. unitText: ISO-8601 duration
  2268. value: P102DT81417.275S
  2269. valueReference:
  2270. schemaKey: PropertyValue
  2271. value: dandi:BirthReference
  2272. genotype: Slc17a7-IRES2-Cre/wt;Camk2a-tTA/wt;Ai94(TITL-GCaMP6s)/wt
  2273. identifier: '438384'
  2274. schemaKey: Participant
  2275. sex:
  2276. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  2277. name: Female
  2278. schemaKey: SexType
  2279. species:
  2280. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  2281. name: Mus musculus - House mouse
  2282. schemaKey: SpeciesType
  2283. wasGeneratedBy:
  2284. - description: Allen Institute OpenScope dataset
  2285. identifier: '835345797'
  2286. name: '835345797'
  2287. schemaKey: Session
  2288. startDate: '2019-03-11T15:36:57.275000-07:00'
  2289. - description: Metadata generated by DANDI cli
  2290. endDate: '2023-06-01T23:52:53.491083-07:00'
  2291. id: urn:uuid:82c7c049-c746-4049-a871-1fa39ab1cdbc
  2292. name: Metadata generation
  2293. schemaKey: Activity
  2294. startDate: '2023-06-01T23:51:36.685078-07:00'
  2295. wasAssociatedWith:
  2296. - identifier: RRID:SCR_019009
  2297. name: DANDI Command Line Interface
  2298. schemaKey: Software
  2299. url: https://github.com/dandi/dandi-cli
  2300. version: 0.54.0
  2301. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2302. access:
  2303. - schemaKey: AccessRequirements
  2304. status: dandi:OpenAccess
  2305. approach:
  2306. - name: microscopy approach; cell population imaging
  2307. schemaKey: ApproachType
  2308. - name: behavioral approach
  2309. schemaKey: ApproachType
  2310. blobDateModified: '2023-06-01T23:02:04.130417-07:00'
  2311. contentSize: 1604128828
  2312. contentUrl:
  2313. - https://api.dandiarchive.org/api/assets/51405a9d-db22-4d07-a79b-80922017047b/download/
  2314. - https://dandiarchive.s3.amazonaws.com/blobs/8d7/6e4/8d76e495-aba4-42d5-b1bc-416f8ee5fdfd
  2315. dateModified: '2023-06-01T23:53:00.211026-07:00'
  2316. datePublished: '2023-06-02T20:22:54.382893+00:00'
  2317. digest:
  2318. dandi:dandi-etag: 8f2a1f565c049c5ac2c8a5da3af37fcf-24
  2319. dandi:sha2-256: 154fc709b77096139dbceb817a7fa2bd6d8bbf6a9553030fa3cc7a182360a731
  2320. encodingFormat: application/x-nwb
  2321. id: dandiasset:51405a9d-db22-4d07-a79b-80922017047b
  2322. identifier: 51405a9d-db22-4d07-a79b-80922017047b
  2323. measurementTechnique:
  2324. - name: behavioral technique
  2325. schemaKey: MeasurementTechniqueType
  2326. - name: surgical technique
  2327. schemaKey: MeasurementTechniqueType
  2328. - name: analytical technique
  2329. schemaKey: MeasurementTechniqueType
  2330. path: sub-438384/sub-438384_ses-835799383_behavior+image+ophys.nwb
  2331. publishedBy:
  2332. endDate: '2023-06-02T20:22:54.382893+00:00'
  2333. id: urn:uuid:ea4b5f60-0796-4131-8376-3c4d7e5739b6
  2334. name: DANDI publish
  2335. schemaKey: PublishActivity
  2336. startDate: '2023-06-02T20:22:54.382893+00:00'
  2337. wasAssociatedWith:
  2338. - id: urn:uuid:fd1f849f-7549-41ca-9357-e0d978f42a89
  2339. identifier: RRID:SCR_017571
  2340. name: DANDI API
  2341. schemaKey: Software
  2342. version: 0.1.0
  2343. schemaKey: Asset
  2344. schemaVersion: 0.6.4
  2345. variableMeasured:
  2346. - schemaKey: PropertyValue
  2347. value: PlaneSegmentation
  2348. - schemaKey: PropertyValue
  2349. value: ImagingPlane
  2350. - schemaKey: PropertyValue
  2351. value: BehavioralTimeSeries
  2352. - schemaKey: PropertyValue
  2353. value: ProcessingModule
  2354. - schemaKey: PropertyValue
  2355. value: OpticalChannel
  2356. wasAttributedTo:
  2357. - age:
  2358. schemaKey: PropertyValue
  2359. unitText: ISO-8601 duration
  2360. value: P103DT80813.896S
  2361. valueReference:
  2362. schemaKey: PropertyValue
  2363. value: dandi:BirthReference
  2364. genotype: Slc17a7-IRES2-Cre/wt;Camk2a-tTA/wt;Ai94(TITL-GCaMP6s)/wt
  2365. identifier: '438384'
  2366. schemaKey: Participant
  2367. sex:
  2368. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  2369. name: Female
  2370. schemaKey: SexType
  2371. species:
  2372. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  2373. name: Mus musculus - House mouse
  2374. schemaKey: SpeciesType
  2375. wasGeneratedBy:
  2376. - description: Allen Institute OpenScope dataset
  2377. identifier: '835799383'
  2378. name: '835799383'
  2379. schemaKey: Session
  2380. startDate: '2019-03-12T15:26:53.896000-07:00'
  2381. - description: Metadata generated by DANDI cli
  2382. endDate: '2023-06-01T23:53:00.211026-07:00'
  2383. id: urn:uuid:0a1faabc-8752-40da-be3c-162ecb80cb15
  2384. name: Metadata generation
  2385. schemaKey: Activity
  2386. startDate: '2023-06-01T23:52:04.186145-07:00'
  2387. wasAssociatedWith:
  2388. - identifier: RRID:SCR_019009
  2389. name: DANDI Command Line Interface
  2390. schemaKey: Software
  2391. url: https://github.com/dandi/dandi-cli
  2392. version: 0.54.0
  2393. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2394. access:
  2395. - schemaKey: AccessRequirements
  2396. status: dandi:OpenAccess
  2397. approach:
  2398. - name: microscopy approach; cell population imaging
  2399. schemaKey: ApproachType
  2400. - name: behavioral approach
  2401. schemaKey: ApproachType
  2402. blobDateModified: '2023-06-01T23:06:00.187520-07:00'
  2403. contentSize: 1549219772
  2404. contentUrl:
  2405. - https://api.dandiarchive.org/api/assets/3f4a9255-8316-406c-8480-631418495c1f/download/
  2406. - https://dandiarchive.s3.amazonaws.com/blobs/459/7a4/4597a4fc-14cc-4082-90b0-3ed69406b5b2
  2407. dateModified: '2023-06-01T23:53:13.684246-07:00'
  2408. datePublished: '2023-06-02T20:22:54.401903+00:00'
  2409. digest:
  2410. dandi:dandi-etag: 2d502c8e548d4d861cf74aa7ff90c32b-24
  2411. dandi:sha2-256: 9a07247b8eaff59e221d164b064c10003f59013088860350162fd7c77854e7e6
  2412. encodingFormat: application/x-nwb
  2413. id: dandiasset:3f4a9255-8316-406c-8480-631418495c1f
  2414. identifier: 3f4a9255-8316-406c-8480-631418495c1f
  2415. measurementTechnique:
  2416. - name: behavioral technique
  2417. schemaKey: MeasurementTechniqueType
  2418. - name: surgical technique
  2419. schemaKey: MeasurementTechniqueType
  2420. - name: analytical technique
  2421. schemaKey: MeasurementTechniqueType
  2422. path: sub-438384/sub-438384_ses-836324839_behavior+image+ophys.nwb
  2423. publishedBy:
  2424. endDate: '2023-06-02T20:22:54.401903+00:00'
  2425. id: urn:uuid:a1d2092e-c581-4e96-acc7-bfd4aaf83775
  2426. name: DANDI publish
  2427. schemaKey: PublishActivity
  2428. startDate: '2023-06-02T20:22:54.401903+00:00'
  2429. wasAssociatedWith:
  2430. - id: urn:uuid:67d3895f-d581-4e5e-b881-0befe6a317b7
  2431. identifier: RRID:SCR_017571
  2432. name: DANDI API
  2433. schemaKey: Software
  2434. version: 0.1.0
  2435. schemaKey: Asset
  2436. schemaVersion: 0.6.4
  2437. variableMeasured:
  2438. - schemaKey: PropertyValue
  2439. value: PlaneSegmentation
  2440. - schemaKey: PropertyValue
  2441. value: ImagingPlane
  2442. - schemaKey: PropertyValue
  2443. value: BehavioralTimeSeries
  2444. - schemaKey: PropertyValue
  2445. value: ProcessingModule
  2446. - schemaKey: PropertyValue
  2447. value: OpticalChannel
  2448. wasAttributedTo:
  2449. - age:
  2450. schemaKey: PropertyValue
  2451. unitText: ISO-8601 duration
  2452. value: P104DT80754.062S
  2453. valueReference:
  2454. schemaKey: PropertyValue
  2455. value: dandi:BirthReference
  2456. genotype: Slc17a7-IRES2-Cre/wt;Camk2a-tTA/wt;Ai94(TITL-GCaMP6s)/wt
  2457. identifier: '438384'
  2458. schemaKey: Participant
  2459. sex:
  2460. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  2461. name: Female
  2462. schemaKey: SexType
  2463. species:
  2464. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  2465. name: Mus musculus - House mouse
  2466. schemaKey: SpeciesType
  2467. wasGeneratedBy:
  2468. - description: Allen Institute OpenScope dataset
  2469. identifier: '836324839'
  2470. name: '836324839'
  2471. schemaKey: Session
  2472. startDate: '2019-03-13T15:25:54.062000-07:00'
  2473. - description: Metadata generated by DANDI cli
  2474. endDate: '2023-06-01T23:53:13.684246-07:00'
  2475. id: urn:uuid:0b7bd0d0-eb8c-451c-b57b-e2a6b14c8253
  2476. name: Metadata generation
  2477. schemaKey: Activity
  2478. startDate: '2023-06-01T23:52:07.331128-07:00'
  2479. wasAssociatedWith:
  2480. - identifier: RRID:SCR_019009
  2481. name: DANDI Command Line Interface
  2482. schemaKey: Software
  2483. url: https://github.com/dandi/dandi-cli
  2484. version: 0.54.0
  2485. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2486. access:
  2487. - schemaKey: AccessRequirements
  2488. status: dandi:OpenAccess
  2489. approach:
  2490. - name: microscopy approach; cell population imaging
  2491. schemaKey: ApproachType
  2492. - name: behavioral approach
  2493. schemaKey: ApproachType
  2494. blobDateModified: '2023-06-01T22:56:05.359284-07:00'
  2495. contentSize: 1414533924
  2496. contentUrl:
  2497. - https://api.dandiarchive.org/api/assets/ca1f26c5-f39c-421f-b1b3-59a9685f127b/download/
  2498. - https://dandiarchive.s3.amazonaws.com/blobs/ef3/062/ef3062e5-afc0-4753-9611-cb3f4699b696
  2499. dateModified: '2023-06-01T23:54:52.814536-07:00'
  2500. datePublished: '2023-06-02T20:22:54.407967+00:00'
  2501. digest:
  2502. dandi:dandi-etag: 7cb541eee5822db31ce4bf6a0ae4218c-22
  2503. dandi:sha2-256: ba8d3bdea778ed0ea2945c52f6edcd93bee7028343836944b3b27120964ff6fe
  2504. encodingFormat: application/x-nwb
  2505. id: dandiasset:ca1f26c5-f39c-421f-b1b3-59a9685f127b
  2506. identifier: ca1f26c5-f39c-421f-b1b3-59a9685f127b
  2507. measurementTechnique:
  2508. - name: behavioral technique
  2509. schemaKey: MeasurementTechniqueType
  2510. - name: surgical technique
  2511. schemaKey: MeasurementTechniqueType
  2512. - name: analytical technique
  2513. schemaKey: MeasurementTechniqueType
  2514. path: sub-439885/sub-439885_ses-833225602_behavior+image+ophys.nwb
  2515. publishedBy:
  2516. endDate: '2023-06-02T20:22:54.407967+00:00'
  2517. id: urn:uuid:c7c5b7a9-1516-41d9-be20-46b2c9672bb5
  2518. name: DANDI publish
  2519. schemaKey: PublishActivity
  2520. startDate: '2023-06-02T20:22:54.407967+00:00'
  2521. wasAssociatedWith:
  2522. - id: urn:uuid:48f4a503-e3e6-482d-90fa-69765f8defbe
  2523. identifier: RRID:SCR_017571
  2524. name: DANDI API
  2525. schemaKey: Software
  2526. version: 0.1.0
  2527. schemaKey: Asset
  2528. schemaVersion: 0.6.4
  2529. variableMeasured:
  2530. - schemaKey: PropertyValue
  2531. value: PlaneSegmentation
  2532. - schemaKey: PropertyValue
  2533. value: ImagingPlane
  2534. - schemaKey: PropertyValue
  2535. value: BehavioralTimeSeries
  2536. - schemaKey: PropertyValue
  2537. value: ProcessingModule
  2538. - schemaKey: PropertyValue
  2539. value: OpticalChannel
  2540. wasAttributedTo:
  2541. - age:
  2542. schemaKey: PropertyValue
  2543. unitText: ISO-8601 duration
  2544. value: P90DT21498.514S
  2545. valueReference:
  2546. schemaKey: PropertyValue
  2547. value: dandi:BirthReference
  2548. genotype: Slc17a7-IRES2-Cre/wt;Camk2a-tTA/wt;Ai93(TITL-GCaMP6f)/wt
  2549. identifier: '439885'
  2550. schemaKey: Participant
  2551. sex:
  2552. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  2553. name: Female
  2554. schemaKey: SexType
  2555. species:
  2556. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  2557. name: Mus musculus - House mouse
  2558. schemaKey: SpeciesType
  2559. wasGeneratedBy:
  2560. - description: Allen Institute OpenScope dataset
  2561. identifier: '833225602'
  2562. name: '833225602'
  2563. schemaKey: Session
  2564. startDate: '2019-03-06T21:58:18.514000-08:00'
  2565. - description: Metadata generated by DANDI cli
  2566. endDate: '2023-06-01T23:54:52.814536-07:00'
  2567. id: urn:uuid:f1432c36-cc5c-4ad4-b6ed-c11af327b383
  2568. name: Metadata generation
  2569. schemaKey: Activity
  2570. startDate: '2023-06-01T23:53:57.466240-07:00'
  2571. wasAssociatedWith:
  2572. - identifier: RRID:SCR_019009
  2573. name: DANDI Command Line Interface
  2574. schemaKey: Software
  2575. url: https://github.com/dandi/dandi-cli
  2576. version: 0.54.0
  2577. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2578. access:
  2579. - schemaKey: AccessRequirements
  2580. status: dandi:OpenAccess
  2581. approach:
  2582. - name: microscopy approach; cell population imaging
  2583. schemaKey: ApproachType
  2584. - name: behavioral approach
  2585. schemaKey: ApproachType
  2586. blobDateModified: '2023-06-01T22:54:52.094887-07:00'
  2587. contentSize: 1365860908
  2588. contentUrl:
  2589. - https://api.dandiarchive.org/api/assets/699f1964-ed7d-4013-ab0e-1e5401a3dd30/download/
  2590. - https://dandiarchive.s3.amazonaws.com/blobs/6e4/87a/6e487a84-ec83-4e9f-be15-4e61ec2a0ea5
  2591. dateModified: '2023-06-01T23:54:56.410051-07:00'
  2592. datePublished: '2023-06-02T20:22:54.419341+00:00'
  2593. digest:
  2594. dandi:dandi-etag: 5746a23738301835d965ccc5a6e543d1-21
  2595. dandi:sha2-256: ab8115fe1b44ebd93deb25424c368e7db84c25ab65534a4bdd7526988002e6df
  2596. encodingFormat: application/x-nwb
  2597. id: dandiasset:699f1964-ed7d-4013-ab0e-1e5401a3dd30
  2598. identifier: 699f1964-ed7d-4013-ab0e-1e5401a3dd30
  2599. measurementTechnique:
  2600. - name: behavioral technique
  2601. schemaKey: MeasurementTechniqueType
  2602. - name: surgical technique
  2603. schemaKey: MeasurementTechniqueType
  2604. - name: analytical technique
  2605. schemaKey: MeasurementTechniqueType
  2606. path: sub-439885/sub-439885_ses-836099240_behavior+image+ophys.nwb
  2607. publishedBy:
  2608. endDate: '2023-06-02T20:22:54.419341+00:00'
  2609. id: urn:uuid:5e6342f7-e496-4fa7-8db0-df985aea2d40
  2610. name: DANDI publish
  2611. schemaKey: PublishActivity
  2612. startDate: '2023-06-02T20:22:54.419341+00:00'
  2613. wasAssociatedWith:
  2614. - id: urn:uuid:2d6feb55-0c01-426c-8efa-10ecf8e1f533
  2615. identifier: RRID:SCR_017571
  2616. name: DANDI API
  2617. schemaKey: Software
  2618. version: 0.1.0
  2619. schemaKey: Asset
  2620. schemaVersion: 0.6.4
  2621. variableMeasured:
  2622. - schemaKey: PropertyValue
  2623. value: PlaneSegmentation
  2624. - schemaKey: PropertyValue
  2625. value: ImagingPlane
  2626. - schemaKey: PropertyValue
  2627. value: BehavioralTimeSeries
  2628. - schemaKey: PropertyValue
  2629. value: ProcessingModule
  2630. - schemaKey: PropertyValue
  2631. value: OpticalChannel
  2632. wasAttributedTo:
  2633. - age:
  2634. schemaKey: PropertyValue
  2635. unitText: ISO-8601 duration
  2636. value: P96DT15784.879S
  2637. valueReference:
  2638. schemaKey: PropertyValue
  2639. value: dandi:BirthReference
  2640. genotype: Slc17a7-IRES2-Cre/wt;Camk2a-tTA/wt;Ai93(TITL-GCaMP6f)/wt
  2641. identifier: '439885'
  2642. schemaKey: Participant
  2643. sex:
  2644. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  2645. name: Female
  2646. schemaKey: SexType
  2647. species:
  2648. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  2649. name: Mus musculus - House mouse
  2650. schemaKey: SpeciesType
  2651. wasGeneratedBy:
  2652. - description: Allen Institute OpenScope dataset
  2653. identifier: '836099240'
  2654. name: '836099240'
  2655. schemaKey: Session
  2656. startDate: '2019-03-12T21:23:04.879000-07:00'
  2657. - description: Metadata generated by DANDI cli
  2658. endDate: '2023-06-01T23:54:56.410051-07:00'
  2659. id: urn:uuid:d999b2c4-d2de-4b9c-b03f-dd22f1bdf86b
  2660. name: Metadata generation
  2661. schemaKey: Activity
  2662. startDate: '2023-06-01T23:54:04.990232-07:00'
  2663. wasAssociatedWith:
  2664. - identifier: RRID:SCR_019009
  2665. name: DANDI Command Line Interface
  2666. schemaKey: Software
  2667. url: https://github.com/dandi/dandi-cli
  2668. version: 0.54.0
  2669. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2670. access:
  2671. - schemaKey: AccessRequirements
  2672. status: dandi:OpenAccess
  2673. approach:
  2674. - name: microscopy approach; cell population imaging
  2675. schemaKey: ApproachType
  2676. - name: behavioral approach
  2677. schemaKey: ApproachType
  2678. blobDateModified: '2023-06-01T22:59:28.866361-07:00'
  2679. contentSize: 1270676940
  2680. contentUrl:
  2681. - https://api.dandiarchive.org/api/assets/93123dab-22f4-4ed3-aae6-a3c09f3835dc/download/
  2682. - https://dandiarchive.s3.amazonaws.com/blobs/a68/8cf/a688cf6b-e2f6-4cab-8aa7-f46fca5a191d
  2683. dateModified: '2023-06-01T23:56:38.183319-07:00'
  2684. datePublished: '2023-06-02T20:22:54.425059+00:00'
  2685. digest:
  2686. dandi:dandi-etag: 7205f0e550f3500626f298ec33e7b0ed-19
  2687. dandi:sha2-256: 77e251df46265671ff0eb12fc4f1fda468b24521469ac0e6da543348c06087e9
  2688. encodingFormat: application/x-nwb
  2689. id: dandiasset:93123dab-22f4-4ed3-aae6-a3c09f3835dc
  2690. identifier: 93123dab-22f4-4ed3-aae6-a3c09f3835dc
  2691. measurementTechnique:
  2692. - name: behavioral technique
  2693. schemaKey: MeasurementTechniqueType
  2694. - name: surgical technique
  2695. schemaKey: MeasurementTechniqueType
  2696. - name: analytical technique
  2697. schemaKey: MeasurementTechniqueType
  2698. path: sub-439885/sub-439885_ses-836665934_behavior+image+ophys.nwb
  2699. publishedBy:
  2700. endDate: '2023-06-02T20:22:54.425059+00:00'
  2701. id: urn:uuid:a87bcd72-d03a-43be-a140-5b39409c4c6e
  2702. name: DANDI publish
  2703. schemaKey: PublishActivity
  2704. startDate: '2023-06-02T20:22:54.425059+00:00'
  2705. wasAssociatedWith:
  2706. - id: urn:uuid:35b3fd63-3f10-48b4-aea2-f05c629d4b85
  2707. identifier: RRID:SCR_017571
  2708. name: DANDI API
  2709. schemaKey: Software
  2710. version: 0.1.0
  2711. schemaKey: Asset
  2712. schemaVersion: 0.6.4
  2713. variableMeasured:
  2714. - schemaKey: PropertyValue
  2715. value: PlaneSegmentation
  2716. - schemaKey: PropertyValue
  2717. value: ImagingPlane
  2718. - schemaKey: PropertyValue
  2719. value: BehavioralTimeSeries
  2720. - schemaKey: PropertyValue
  2721. value: ProcessingModule
  2722. - schemaKey: PropertyValue
  2723. value: OpticalChannel
  2724. wasAttributedTo:
  2725. - age:
  2726. schemaKey: PropertyValue
  2727. unitText: ISO-8601 duration
  2728. value: P97DT12820.642S
  2729. valueReference:
  2730. schemaKey: PropertyValue
  2731. value: dandi:BirthReference
  2732. genotype: Slc17a7-IRES2-Cre/wt;Camk2a-tTA/wt;Ai93(TITL-GCaMP6f)/wt
  2733. identifier: '439885'
  2734. schemaKey: Participant
  2735. sex:
  2736. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  2737. name: Female
  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: Allen Institute OpenScope dataset
  2745. identifier: '836665934'
  2746. name: '836665934'
  2747. schemaKey: Session
  2748. startDate: '2019-03-13T20:33:40.642000-07:00'
  2749. - description: Metadata generated by DANDI cli
  2750. endDate: '2023-06-01T23:56:38.183319-07:00'
  2751. id: urn:uuid:c2279976-c47a-4296-918d-e2059d6683d6
  2752. name: Metadata generation
  2753. schemaKey: Activity
  2754. startDate: '2023-06-01T23:55:32.168576-07: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.54.0
  2761. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2762. access:
  2763. - schemaKey: AccessRequirements
  2764. status: dandi:OpenAccess
  2765. approach:
  2766. - name: microscopy approach; cell population imaging
  2767. schemaKey: ApproachType
  2768. - name: behavioral approach
  2769. schemaKey: ApproachType
  2770. blobDateModified: '2023-06-01T23:10:08.420574-07:00'
  2771. contentSize: 1317135476
  2772. contentUrl:
  2773. - https://api.dandiarchive.org/api/assets/ab0118fc-7095-4c6c-bb15-da597154d4bb/download/
  2774. - https://dandiarchive.s3.amazonaws.com/blobs/06f/3a9/06f3a9aa-295d-47c8-9c07-876b84e54294
  2775. dateModified: '2023-06-01T23:56:59.187708-07:00'
  2776. datePublished: '2023-06-02T20:22:54.455603+00:00'
  2777. digest:
  2778. dandi:dandi-etag: f6e09585c43ed623e6233a26f3ee7800-20
  2779. dandi:sha2-256: cc494d23c1852cc315bc56c2570d149d1ffaa4da84d3e1fbf230004b1022a32a
  2780. encodingFormat: application/x-nwb
  2781. id: dandiasset:ab0118fc-7095-4c6c-bb15-da597154d4bb
  2782. identifier: ab0118fc-7095-4c6c-bb15-da597154d4bb
  2783. measurementTechnique:
  2784. - name: behavioral technique
  2785. schemaKey: MeasurementTechniqueType
  2786. - name: surgical technique
  2787. schemaKey: MeasurementTechniqueType
  2788. - name: analytical technique
  2789. schemaKey: MeasurementTechniqueType
  2790. path: sub-439895/sub-439895_ses-826834709_behavior+image+ophys.nwb
  2791. publishedBy:
  2792. endDate: '2023-06-02T20:22:54.455603+00:00'
  2793. id: urn:uuid:e351aa87-7512-4b59-95f1-afa375c84cf9
  2794. name: DANDI publish
  2795. schemaKey: PublishActivity
  2796. startDate: '2023-06-02T20:22:54.455603+00:00'
  2797. wasAssociatedWith:
  2798. - id: urn:uuid:ea948127-b5f5-43b7-8346-f4dd592c3b85
  2799. identifier: RRID:SCR_017571
  2800. name: DANDI API
  2801. schemaKey: Software
  2802. version: 0.1.0
  2803. schemaKey: Asset
  2804. schemaVersion: 0.6.4
  2805. variableMeasured:
  2806. - schemaKey: PropertyValue
  2807. value: PlaneSegmentation
  2808. - schemaKey: PropertyValue
  2809. value: ImagingPlane
  2810. - schemaKey: PropertyValue
  2811. value: BehavioralTimeSeries
  2812. - schemaKey: PropertyValue
  2813. value: ProcessingModule
  2814. - schemaKey: PropertyValue
  2815. value: OpticalChannel
  2816. wasAttributedTo:
  2817. - age:
  2818. schemaKey: PropertyValue
  2819. unitText: ISO-8601 duration
  2820. value: P77DT23924.701S
  2821. valueReference:
  2822. schemaKey: PropertyValue
  2823. value: dandi:BirthReference
  2824. genotype: Slc17a7-IRES2-Cre/wt;Camk2a-tTA/wt;Ai93(TITL-GCaMP6f)/wt
  2825. identifier: '439895'
  2826. schemaKey: Participant
  2827. sex:
  2828. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  2829. name: Male
  2830. schemaKey: SexType
  2831. species:
  2832. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  2833. name: Mus musculus - House mouse
  2834. schemaKey: SpeciesType
  2835. wasGeneratedBy:
  2836. - description: Allen Institute OpenScope dataset
  2837. identifier: '826834709'
  2838. name: '826834709'
  2839. schemaKey: Session
  2840. startDate: '2019-02-21T22:38:44.701000-08:00'
  2841. - description: Metadata generated by DANDI cli
  2842. endDate: '2023-06-01T23:56:59.187708-07:00'
  2843. id: urn:uuid:c78d4b49-194d-431f-a262-81fa3c489ee8
  2844. name: Metadata generation
  2845. schemaKey: Activity
  2846. startDate: '2023-06-01T23:56:02.534029-07:00'
  2847. wasAssociatedWith:
  2848. - identifier: RRID:SCR_019009
  2849. name: DANDI Command Line Interface
  2850. schemaKey: Software
  2851. url: https://github.com/dandi/dandi-cli
  2852. version: 0.54.0
  2853. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2854. access:
  2855. - schemaKey: AccessRequirements
  2856. status: dandi:OpenAccess
  2857. approach:
  2858. - name: microscopy approach; cell population imaging
  2859. schemaKey: ApproachType
  2860. - name: behavioral approach
  2861. schemaKey: ApproachType
  2862. blobDateModified: '2023-06-01T22:53:16.715870-07:00'
  2863. contentSize: 1236823116
  2864. contentUrl:
  2865. - https://api.dandiarchive.org/api/assets/63bf5bd6-9765-45ae-b5da-91eba0665bb9/download/
  2866. - https://dandiarchive.s3.amazonaws.com/blobs/027/fba/027fba6d-b93c-4c9c-9e89-6c24bce88066
  2867. dateModified: '2023-06-01T23:57:04.266337-07:00'
  2868. datePublished: '2023-06-02T20:22:54.490026+00:00'
  2869. digest:
  2870. dandi:dandi-etag: 065090dc0a528182c11fe579ec518ce8-19
  2871. dandi:sha2-256: 18375b142bea8f5fdecab687c72a736650d116245b121883cf0ed32930d790bb
  2872. encodingFormat: application/x-nwb
  2873. id: dandiasset:63bf5bd6-9765-45ae-b5da-91eba0665bb9
  2874. identifier: 63bf5bd6-9765-45ae-b5da-91eba0665bb9
  2875. measurementTechnique:
  2876. - name: behavioral technique
  2877. schemaKey: MeasurementTechniqueType
  2878. - name: surgical technique
  2879. schemaKey: MeasurementTechniqueType
  2880. - name: analytical technique
  2881. schemaKey: MeasurementTechniqueType
  2882. path: sub-439885/sub-439885_ses-837174181_behavior+image+ophys.nwb
  2883. publishedBy:
  2884. endDate: '2023-06-02T20:22:54.490026+00:00'
  2885. id: urn:uuid:4c684ba4-adb2-4b6a-89bb-1add19f635b5
  2886. name: DANDI publish
  2887. schemaKey: PublishActivity
  2888. startDate: '2023-06-02T20:22:54.490026+00:00'
  2889. wasAssociatedWith:
  2890. - id: urn:uuid:3193cfc7-6676-4ba7-af1b-dbafde89a4d6
  2891. identifier: RRID:SCR_017571
  2892. name: DANDI API
  2893. schemaKey: Software
  2894. version: 0.1.0
  2895. schemaKey: Asset
  2896. schemaVersion: 0.6.4
  2897. variableMeasured:
  2898. - schemaKey: PropertyValue
  2899. value: PlaneSegmentation
  2900. - schemaKey: PropertyValue
  2901. value: ImagingPlane
  2902. - schemaKey: PropertyValue
  2903. value: BehavioralTimeSeries
  2904. - schemaKey: PropertyValue
  2905. value: ProcessingModule
  2906. - schemaKey: PropertyValue
  2907. value: OpticalChannel
  2908. wasAttributedTo:
  2909. - age:
  2910. schemaKey: PropertyValue
  2911. unitText: ISO-8601 duration
  2912. value: P98DT11068.324S
  2913. valueReference:
  2914. schemaKey: PropertyValue
  2915. value: dandi:BirthReference
  2916. genotype: Slc17a7-IRES2-Cre/wt;Camk2a-tTA/wt;Ai93(TITL-GCaMP6f)/wt
  2917. identifier: '439885'
  2918. schemaKey: Participant
  2919. sex:
  2920. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  2921. name: Female
  2922. schemaKey: SexType
  2923. species:
  2924. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  2925. name: Mus musculus - House mouse
  2926. schemaKey: SpeciesType
  2927. wasGeneratedBy:
  2928. - description: Allen Institute OpenScope dataset
  2929. identifier: '837174181'
  2930. name: '837174181'
  2931. schemaKey: Session
  2932. startDate: '2019-03-14T20:04:28.324000-07:00'
  2933. - description: Metadata generated by DANDI cli
  2934. endDate: '2023-06-01T23:57:04.266337-07:00'
  2935. id: urn:uuid:49ccda6e-9dd6-4e3f-ab19-548651bdf447
  2936. name: Metadata generation
  2937. schemaKey: Activity
  2938. startDate: '2023-06-01T23:56:06.927347-07:00'
  2939. wasAssociatedWith:
  2940. - identifier: RRID:SCR_019009
  2941. name: DANDI Command Line Interface
  2942. schemaKey: Software
  2943. url: https://github.com/dandi/dandi-cli
  2944. version: 0.54.0
  2945. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2946. access:
  2947. - schemaKey: AccessRequirements
  2948. status: dandi:OpenAccess
  2949. approach:
  2950. - name: microscopy approach; cell population imaging
  2951. schemaKey: ApproachType
  2952. - name: behavioral approach
  2953. schemaKey: ApproachType
  2954. blobDateModified: '2023-06-01T23:00:25.510666-07:00'
  2955. contentSize: 1325672956
  2956. contentUrl:
  2957. - https://api.dandiarchive.org/api/assets/782f7127-bd95-4dd1-8596-a43d3eff4142/download/
  2958. - https://dandiarchive.s3.amazonaws.com/blobs/d58/da2/d58da27c-0127-4653-9c02-4520926ffa40
  2959. dateModified: '2023-06-01T23:58:41.604711-07:00'
  2960. datePublished: '2023-06-02T20:22:54.461602+00:00'
  2961. digest:
  2962. dandi:dandi-etag: 2998dce9e5807cf54ae427b20928c385-20
  2963. dandi:sha2-256: e30fabf48e58707347b009f550ed1b62f794f5a1f42689477c70ea633c116b89
  2964. encodingFormat: application/x-nwb
  2965. id: dandiasset:782f7127-bd95-4dd1-8596-a43d3eff4142
  2966. identifier: 782f7127-bd95-4dd1-8596-a43d3eff4142
  2967. measurementTechnique:
  2968. - name: behavioral technique
  2969. schemaKey: MeasurementTechniqueType
  2970. - name: surgical technique
  2971. schemaKey: MeasurementTechniqueType
  2972. - name: analytical technique
  2973. schemaKey: MeasurementTechniqueType
  2974. path: sub-439895/sub-439895_ses-828804932_behavior+image+ophys.nwb
  2975. publishedBy:
  2976. endDate: '2023-06-02T20:22:54.461602+00:00'
  2977. id: urn:uuid:f742a3f6-589c-40af-82ac-925c4a7de6b3
  2978. name: DANDI publish
  2979. schemaKey: PublishActivity
  2980. startDate: '2023-06-02T20:22:54.461602+00:00'
  2981. wasAssociatedWith:
  2982. - id: urn:uuid:e0601f05-88de-4754-8ca5-5b2d9711750c
  2983. identifier: RRID:SCR_017571
  2984. name: DANDI API
  2985. schemaKey: Software
  2986. version: 0.1.0
  2987. schemaKey: Asset
  2988. schemaVersion: 0.6.4
  2989. variableMeasured:
  2990. - schemaKey: PropertyValue
  2991. value: PlaneSegmentation
  2992. - schemaKey: PropertyValue
  2993. value: ImagingPlane
  2994. - schemaKey: PropertyValue
  2995. value: BehavioralTimeSeries
  2996. - schemaKey: PropertyValue
  2997. value: ProcessingModule
  2998. - schemaKey: PropertyValue
  2999. value: OpticalChannel
  3000. wasAttributedTo:
  3001. - age:
  3002. schemaKey: PropertyValue
  3003. unitText: ISO-8601 duration
  3004. value: P81DT19278.014S
  3005. valueReference:
  3006. schemaKey: PropertyValue
  3007. value: dandi:BirthReference
  3008. genotype: Slc17a7-IRES2-Cre/wt;Camk2a-tTA/wt;Ai93(TITL-GCaMP6f)/wt
  3009. identifier: '439895'
  3010. schemaKey: Participant
  3011. sex:
  3012. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  3013. name: Male
  3014. schemaKey: SexType
  3015. species:
  3016. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  3017. name: Mus musculus - House mouse
  3018. schemaKey: SpeciesType
  3019. wasGeneratedBy:
  3020. - description: Allen Institute OpenScope dataset
  3021. identifier: '828804932'
  3022. name: '828804932'
  3023. schemaKey: Session
  3024. startDate: '2019-02-25T21:21:18.014000-08:00'
  3025. - description: Metadata generated by DANDI cli
  3026. endDate: '2023-06-01T23:58:41.604711-07:00'
  3027. id: urn:uuid:6954892b-ad52-4562-885e-0b8427a27222
  3028. name: Metadata generation
  3029. schemaKey: Activity
  3030. startDate: '2023-06-01T23:57:51.946540-07:00'
  3031. wasAssociatedWith:
  3032. - identifier: RRID:SCR_019009
  3033. name: DANDI Command Line Interface
  3034. schemaKey: Software
  3035. url: https://github.com/dandi/dandi-cli
  3036. version: 0.54.0
  3037. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  3038. access:
  3039. - schemaKey: AccessRequirements
  3040. status: dandi:OpenAccess
  3041. approach:
  3042. - name: microscopy approach; cell population imaging
  3043. schemaKey: ApproachType
  3044. - name: behavioral approach
  3045. schemaKey: ApproachType
  3046. blobDateModified: '2023-06-01T23:01:41.444481-07:00'
  3047. contentSize: 1306638988
  3048. contentUrl:
  3049. - https://api.dandiarchive.org/api/assets/ee67eedc-58b9-4457-a1a4-d610c8f0bf4e/download/
  3050. - https://dandiarchive.s3.amazonaws.com/blobs/01e/b69/01eb69f6-5d1d-4afa-acd8-0a16cec7dc5d
  3051. dateModified: '2023-06-02T00:00:28.210905-07:00'
  3052. datePublished: '2023-06-02T20:22:54.467318+00:00'
  3053. digest:
  3054. dandi:dandi-etag: f61f7dcd4876b5892c6e573ed85c8a3e-20
  3055. dandi:sha2-256: 792fdb7b5e23e83d203c92fe62c3d44c7650f7ea4ec022bb3a3eb43f3ff2b446
  3056. encodingFormat: application/x-nwb
  3057. id: dandiasset:ee67eedc-58b9-4457-a1a4-d610c8f0bf4e
  3058. identifier: ee67eedc-58b9-4457-a1a4-d610c8f0bf4e
  3059. measurementTechnique:
  3060. - name: behavioral technique
  3061. schemaKey: MeasurementTechniqueType
  3062. - name: surgical technique
  3063. schemaKey: MeasurementTechniqueType
  3064. - name: analytical technique
  3065. schemaKey: MeasurementTechniqueType
  3066. path: sub-439895/sub-439895_ses-831155306_behavior+image+ophys.nwb
  3067. publishedBy:
  3068. endDate: '2023-06-02T20:22:54.467318+00:00'
  3069. id: urn:uuid:f862c51a-bf05-4ef7-b034-e92b4f044751
  3070. name: DANDI publish
  3071. schemaKey: PublishActivity
  3072. startDate: '2023-06-02T20:22:54.467318+00:00'
  3073. wasAssociatedWith:
  3074. - id: urn:uuid:6e60b502-7b47-4f4b-a286-85027a939eaa
  3075. identifier: RRID:SCR_017571
  3076. name: DANDI API
  3077. schemaKey: Software
  3078. version: 0.1.0
  3079. schemaKey: Asset
  3080. schemaVersion: 0.6.4
  3081. variableMeasured:
  3082. - schemaKey: PropertyValue
  3083. value: PlaneSegmentation
  3084. - schemaKey: PropertyValue
  3085. value: ImagingPlane
  3086. - schemaKey: PropertyValue
  3087. value: BehavioralTimeSeries
  3088. - schemaKey: PropertyValue
  3089. value: ProcessingModule
  3090. - schemaKey: PropertyValue
  3091. value: OpticalChannel
  3092. wasAttributedTo:
  3093. - age:
  3094. schemaKey: PropertyValue
  3095. unitText: ISO-8601 duration
  3096. value: P85DT23625.846S
  3097. valueReference:
  3098. schemaKey: PropertyValue
  3099. value: dandi:BirthReference
  3100. genotype: Slc17a7-IRES2-Cre/wt;Camk2a-tTA/wt;Ai93(TITL-GCaMP6f)/wt
  3101. identifier: '439895'
  3102. schemaKey: Participant
  3103. sex:
  3104. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  3105. name: Male
  3106. schemaKey: SexType
  3107. species:
  3108. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  3109. name: Mus musculus - House mouse
  3110. schemaKey: SpeciesType
  3111. wasGeneratedBy:
  3112. - description: Allen Institute OpenScope dataset
  3113. identifier: '831155306'
  3114. name: '831155306'
  3115. schemaKey: Session
  3116. startDate: '2019-03-01T22:33:45.846000-08:00'
  3117. - description: Metadata generated by DANDI cli
  3118. endDate: '2023-06-02T00:00:28.210905-07:00'
  3119. id: urn:uuid:ce048d86-d623-4324-a25f-cef8d5bce524
  3120. name: Metadata generation
  3121. schemaKey: Activity
  3122. startDate: '2023-06-01T23:59:11.627917-07:00'
  3123. wasAssociatedWith:
  3124. - identifier: RRID:SCR_019009
  3125. name: DANDI Command Line Interface
  3126. schemaKey: Software
  3127. url: https://github.com/dandi/dandi-cli
  3128. version: 0.54.0
  3129. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  3130. access:
  3131. - schemaKey: AccessRequirements
  3132. status: dandi:OpenAccess
  3133. approach:
  3134. - name: microscopy approach; cell population imaging
  3135. schemaKey: ApproachType
  3136. - name: behavioral approach
  3137. schemaKey: ApproachType
  3138. blobDateModified: '2023-06-01T22:53:20.651149-07:00'
  3139. contentSize: 1247174524
  3140. contentUrl:
  3141. - https://api.dandiarchive.org/api/assets/59b0d883-0c7e-4044-b8e7-93961bd6ac51/download/
  3142. - https://dandiarchive.s3.amazonaws.com/blobs/b42/631/b426311f-8acb-44b5-88b4-794e1b95e233
  3143. dateModified: '2023-06-02T00:00:37.830966-07:00'
  3144. datePublished: '2023-06-02T20:22:54.472694+00:00'
  3145. digest:
  3146. dandi:dandi-etag: 5a8479a590dc6a300458068b245078e6-19
  3147. dandi:sha2-256: aa92dda192ee6e5e6a866ba550bded686aff59531389aefaf714b0b022bc8494
  3148. encodingFormat: application/x-nwb
  3149. id: dandiasset:59b0d883-0c7e-4044-b8e7-93961bd6ac51
  3150. identifier: 59b0d883-0c7e-4044-b8e7-93961bd6ac51
  3151. measurementTechnique:
  3152. - name: behavioral technique
  3153. schemaKey: MeasurementTechniqueType
  3154. - name: surgical technique
  3155. schemaKey: MeasurementTechniqueType
  3156. - name: analytical technique
  3157. schemaKey: MeasurementTechniqueType
  3158. path: sub-439900/sub-439900_ses-835537233_behavior+image+ophys.nwb
  3159. publishedBy:
  3160. endDate: '2023-06-02T20:22:54.472694+00:00'
  3161. id: urn:uuid:04b9d296-4645-4388-8e77-7e57b943c193
  3162. name: DANDI publish
  3163. schemaKey: PublishActivity
  3164. startDate: '2023-06-02T20:22:54.472694+00:00'
  3165. wasAssociatedWith:
  3166. - id: urn:uuid:1686c2b2-13bf-4614-a2c5-bca47a76c9b4
  3167. identifier: RRID:SCR_017571
  3168. name: DANDI API
  3169. schemaKey: Software
  3170. version: 0.1.0
  3171. schemaKey: Asset
  3172. schemaVersion: 0.6.4
  3173. variableMeasured:
  3174. - schemaKey: PropertyValue
  3175. value: PlaneSegmentation
  3176. - schemaKey: PropertyValue
  3177. value: ImagingPlane
  3178. - schemaKey: PropertyValue
  3179. value: BehavioralTimeSeries
  3180. - schemaKey: PropertyValue
  3181. value: ProcessingModule
  3182. - schemaKey: PropertyValue
  3183. value: OpticalChannel
  3184. wasAttributedTo:
  3185. - age:
  3186. schemaKey: PropertyValue
  3187. unitText: ISO-8601 duration
  3188. value: P95DT12558.401S
  3189. valueReference:
  3190. schemaKey: PropertyValue
  3191. value: dandi:BirthReference
  3192. genotype: Slc17a7-IRES2-Cre/wt;Camk2a-tTA/wt;Ai93(TITL-GCaMP6f)/wt
  3193. identifier: '439900'
  3194. schemaKey: Participant
  3195. sex:
  3196. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  3197. name: Female
  3198. schemaKey: SexType
  3199. species:
  3200. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  3201. name: Mus musculus - House mouse
  3202. schemaKey: SpeciesType
  3203. wasGeneratedBy:
  3204. - description: Allen Institute OpenScope dataset
  3205. identifier: '835537233'
  3206. name: '835537233'
  3207. schemaKey: Session
  3208. startDate: '2019-03-11T20:29:18.401000-07:00'
  3209. - description: Metadata generated by DANDI cli
  3210. endDate: '2023-06-02T00:00:37.830966-07:00'
  3211. id: urn:uuid:cfadf897-8e7d-4af7-81a3-3037c42be7e6
  3212. name: Metadata generation
  3213. schemaKey: Activity
  3214. startDate: '2023-06-01T23:59:32.545817-07:00'
  3215. wasAssociatedWith:
  3216. - identifier: RRID:SCR_019009
  3217. name: DANDI Command Line Interface
  3218. schemaKey: Software
  3219. url: https://github.com/dandi/dandi-cli
  3220. version: 0.54.0
  3221. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  3222. access:
  3223. - schemaKey: AccessRequirements
  3224. status: dandi:OpenAccess
  3225. approach:
  3226. - name: microscopy approach; cell population imaging
  3227. schemaKey: ApproachType
  3228. - name: behavioral approach
  3229. schemaKey: ApproachType
  3230. blobDateModified: '2023-06-01T22:53:55.372964-07:00'
  3231. contentSize: 1245137596
  3232. contentUrl:
  3233. - https://api.dandiarchive.org/api/assets/d88ddebc-3d9b-411c-a26e-6f23f7e754cc/download/
  3234. - https://dandiarchive.s3.amazonaws.com/blobs/a1c/806/a1c80623-39c9-43a7-8983-c92235ec6700
  3235. dateModified: '2023-06-02T00:00:55.389444-07:00'
  3236. datePublished: '2023-06-02T20:22:54.431687+00:00'
  3237. digest:
  3238. dandi:dandi-etag: 28eebbbd6dba722537b92ef7ba326b99-19
  3239. dandi:sha2-256: 437f6e744eaeee42c7286f20b5e1329c0a5cd123532eecd3d691eede95254399
  3240. encodingFormat: application/x-nwb
  3241. id: dandiasset:d88ddebc-3d9b-411c-a26e-6f23f7e754cc
  3242. identifier: d88ddebc-3d9b-411c-a26e-6f23f7e754cc
  3243. measurementTechnique:
  3244. - name: behavioral technique
  3245. schemaKey: MeasurementTechniqueType
  3246. - name: surgical technique
  3247. schemaKey: MeasurementTechniqueType
  3248. - name: analytical technique
  3249. schemaKey: MeasurementTechniqueType
  3250. path: sub-439900/sub-439900_ses-835970284_behavior+image+ophys.nwb
  3251. publishedBy:
  3252. endDate: '2023-06-02T20:22:54.431687+00:00'
  3253. id: urn:uuid:34bfed7b-943b-44d2-b90b-a4bf4e56dc91
  3254. name: DANDI publish
  3255. schemaKey: PublishActivity
  3256. startDate: '2023-06-02T20:22:54.431687+00:00'
  3257. wasAssociatedWith:
  3258. - id: urn:uuid:0baa38c1-eba5-4488-9fb2-f6b501cffb50
  3259. identifier: RRID:SCR_017571
  3260. name: DANDI API
  3261. schemaKey: Software
  3262. version: 0.1.0
  3263. schemaKey: Asset
  3264. schemaVersion: 0.6.4
  3265. variableMeasured:
  3266. - schemaKey: PropertyValue
  3267. value: PlaneSegmentation
  3268. - schemaKey: PropertyValue
  3269. value: ImagingPlane
  3270. - schemaKey: PropertyValue
  3271. value: BehavioralTimeSeries
  3272. - schemaKey: PropertyValue
  3273. value: ProcessingModule
  3274. - schemaKey: PropertyValue
  3275. value: OpticalChannel
  3276. wasAttributedTo:
  3277. - age:
  3278. schemaKey: PropertyValue
  3279. unitText: ISO-8601 duration
  3280. value: P96DT10187.93S
  3281. valueReference:
  3282. schemaKey: PropertyValue
  3283. value: dandi:BirthReference
  3284. genotype: Slc17a7-IRES2-Cre/wt;Camk2a-tTA/wt;Ai93(TITL-GCaMP6f)/wt
  3285. identifier: '439900'
  3286. schemaKey: Participant
  3287. sex:
  3288. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  3289. name: Female
  3290. schemaKey: SexType
  3291. species:
  3292. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  3293. name: Mus musculus - House mouse
  3294. schemaKey: SpeciesType
  3295. wasGeneratedBy:
  3296. - description: Allen Institute OpenScope dataset
  3297. identifier: '835970284'
  3298. name: '835970284'
  3299. schemaKey: Session
  3300. startDate: '2019-03-12T19:49:47.930000-07:00'
  3301. - description: Metadata generated by DANDI cli
  3302. endDate: '2023-06-02T00:00:55.389444-07:00'
  3303. id: urn:uuid:a3b4b76e-11d9-4254-877c-0dfc0bf48d59
  3304. name: Metadata generation
  3305. schemaKey: Activity
  3306. startDate: '2023-06-01T23:59:55.885456-07:00'
  3307. wasAssociatedWith:
  3308. - identifier: RRID:SCR_019009
  3309. name: DANDI Command Line Interface
  3310. schemaKey: Software
  3311. url: https://github.com/dandi/dandi-cli
  3312. version: 0.54.0
  3313. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  3314. access:
  3315. - schemaKey: AccessRequirements
  3316. status: dandi:OpenAccess
  3317. approach:
  3318. - name: microscopy approach; cell population imaging
  3319. schemaKey: ApproachType
  3320. - name: behavioral approach
  3321. schemaKey: ApproachType
  3322. blobDateModified: '2023-06-01T22:57:31.201695-07:00'
  3323. contentSize: 1287374652
  3324. contentUrl:
  3325. - https://api.dandiarchive.org/api/assets/ee90fcb9-1cf3-4d07-ab08-73ddea2c3920/download/
  3326. - https://dandiarchive.s3.amazonaws.com/blobs/031/069/03106995-52a2-4916-93b9-6d3fe9eeadf2
  3327. dateModified: '2023-06-02T00:00:56.633706-07:00'
  3328. datePublished: '2023-06-02T20:22:54.500860+00:00'
  3329. digest:
  3330. dandi:dandi-etag: 2ce184f835f9cc8b6fce27f899e9bde8-20
  3331. dandi:sha2-256: 69f93d21730a4844e84745173bf9e412c23f9593303d181c8234abf1191e2c2c
  3332. encodingFormat: application/x-nwb
  3333. id: dandiasset:ee90fcb9-1cf3-4d07-ab08-73ddea2c3920
  3334. identifier: ee90fcb9-1cf3-4d07-ab08-73ddea2c3920
  3335. measurementTechnique:
  3336. - name: behavioral technique
  3337. schemaKey: MeasurementTechniqueType
  3338. - name: surgical technique
  3339. schemaKey: MeasurementTechniqueType
  3340. - name: analytical technique
  3341. schemaKey: MeasurementTechniqueType
  3342. path: sub-439900/sub-439900_ses-833173749_behavior+image+ophys.nwb
  3343. publishedBy:
  3344. endDate: '2023-06-02T20:22:54.500860+00:00'
  3345. id: urn:uuid:d8e35571-b0d9-4ccd-acf8-008aa447e07e
  3346. name: DANDI publish
  3347. schemaKey: PublishActivity
  3348. startDate: '2023-06-02T20:22:54.500860+00:00'
  3349. wasAssociatedWith:
  3350. - id: urn:uuid:d5baedc0-2530-45cd-8a33-57f53f7e3cca
  3351. identifier: RRID:SCR_017571
  3352. name: DANDI API
  3353. schemaKey: Software
  3354. version: 0.1.0
  3355. schemaKey: Asset
  3356. schemaVersion: 0.6.4
  3357. variableMeasured:
  3358. - schemaKey: PropertyValue
  3359. value: PlaneSegmentation
  3360. - schemaKey: PropertyValue
  3361. value: ImagingPlane
  3362. - schemaKey: PropertyValue
  3363. value: BehavioralTimeSeries
  3364. - schemaKey: PropertyValue
  3365. value: ProcessingModule
  3366. - schemaKey: PropertyValue
  3367. value: OpticalChannel
  3368. wasAttributedTo:
  3369. - age:
  3370. schemaKey: PropertyValue
  3371. unitText: ISO-8601 duration
  3372. value: P90DT17726.007S
  3373. valueReference:
  3374. schemaKey: PropertyValue
  3375. value: dandi:BirthReference
  3376. genotype: Slc17a7-IRES2-Cre/wt;Camk2a-tTA/wt;Ai93(TITL-GCaMP6f)/wt
  3377. identifier: '439900'
  3378. schemaKey: Participant
  3379. sex:
  3380. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  3381. name: Female
  3382. schemaKey: SexType
  3383. species:
  3384. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  3385. name: Mus musculus - House mouse
  3386. schemaKey: SpeciesType
  3387. wasGeneratedBy:
  3388. - description: Allen Institute OpenScope dataset
  3389. identifier: '833173749'
  3390. name: '833173749'
  3391. schemaKey: Session
  3392. startDate: '2019-03-06T20:55:26.007000-08:00'
  3393. - description: Metadata generated by DANDI cli
  3394. endDate: '2023-06-02T00:00:56.633706-07:00'
  3395. id: urn:uuid:8d5135a0-a8fe-472c-aae5-f077d92ffa41
  3396. name: Metadata generation
  3397. schemaKey: Activity
  3398. startDate: '2023-06-01T23:59:28.261527-07:00'
  3399. wasAssociatedWith:
  3400. - identifier: RRID:SCR_019009
  3401. name: DANDI Command Line Interface
  3402. schemaKey: Software
  3403. url: https://github.com/dandi/dandi-cli
  3404. version: 0.54.0
  3405. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  3406. access:
  3407. - schemaKey: AccessRequirements
  3408. status: dandi:OpenAccess
  3409. approach:
  3410. - name: microscopy approach; cell population imaging
  3411. schemaKey: ApproachType
  3412. - name: behavioral approach
  3413. schemaKey: ApproachType
  3414. blobDateModified: '2023-04-28T19:03:48.993643-07:00'
  3415. contentSize: 1642954276
  3416. contentUrl:
  3417. - https://api.dandiarchive.org/api/assets/ae4e0bd4-6e5d-4145-9ca8-8ee4e3357e0c/download/
  3418. - https://dandiarchive.s3.amazonaws.com/blobs/b98/ad3/b98ad319-bd6f-49ef-ba43-ed1f2bbd2932
  3419. dateModified: '2023-06-02T00:02:17.453193-07:00'
  3420. datePublished: '2023-06-02T20:22:54.506671+00:00'
  3421. digest:
  3422. dandi:dandi-etag: ec083eaf7e818e015ac317c6d6927cc2-25
  3423. dandi:sha2-256: d7efb9b44c24a2812261e3182bc6107dca5b765c62c90987174fd84b629c9237
  3424. encodingFormat: application/x-nwb
  3425. id: dandiasset:ae4e0bd4-6e5d-4145-9ca8-8ee4e3357e0c
  3426. identifier: ae4e0bd4-6e5d-4145-9ca8-8ee4e3357e0c
  3427. measurementTechnique:
  3428. - name: behavioral technique
  3429. schemaKey: MeasurementTechniqueType
  3430. - name: surgical technique
  3431. schemaKey: MeasurementTechniqueType
  3432. - name: analytical technique
  3433. schemaKey: MeasurementTechniqueType
  3434. path: sub-440208/sub-440208_ses-20190313T174911_behavior+image+ophys.nwb
  3435. publishedBy:
  3436. endDate: '2023-06-02T20:22:54.506671+00:00'
  3437. id: urn:uuid:884ad02e-ab5a-4165-bf3c-909936c85f94
  3438. name: DANDI publish
  3439. schemaKey: PublishActivity
  3440. startDate: '2023-06-02T20:22:54.506671+00:00'
  3441. wasAssociatedWith:
  3442. - id: urn:uuid:0ea2d516-7823-496c-b541-e93070d1a9fa
  3443. identifier: RRID:SCR_017571
  3444. name: DANDI API
  3445. schemaKey: Software
  3446. version: 0.1.0
  3447. schemaKey: Asset
  3448. schemaVersion: 0.6.4
  3449. variableMeasured:
  3450. - schemaKey: PropertyValue
  3451. value: PlaneSegmentation
  3452. - schemaKey: PropertyValue
  3453. value: ImagingPlane
  3454. - schemaKey: PropertyValue
  3455. value: BehavioralTimeSeries
  3456. - schemaKey: PropertyValue
  3457. value: ProcessingModule
  3458. - schemaKey: PropertyValue
  3459. value: OpticalChannel
  3460. wasAttributedTo:
  3461. - age:
  3462. schemaKey: PropertyValue
  3463. unitText: ISO-8601 duration
  3464. value: P95DT2951.943S
  3465. valueReference:
  3466. schemaKey: PropertyValue
  3467. value: dandi:BirthReference
  3468. genotype: Slc17a7-IRES2-Cre/wt;Camk2a-tTA/wt;Ai94(TITL-GCaMP6s)/wt
  3469. identifier: '440208'
  3470. schemaKey: Participant
  3471. sex:
  3472. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  3473. name: Female
  3474. schemaKey: SexType
  3475. species:
  3476. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  3477. name: Mus musculus - House mouse
  3478. schemaKey: SpeciesType
  3479. wasGeneratedBy:
  3480. - description: Allen Institute OpenScope dataset
  3481. name: Acquisition session
  3482. schemaKey: Session
  3483. startDate: '2019-03-13T17:49:11.943000-07:00'
  3484. - description: Metadata generated by DANDI cli
  3485. endDate: '2023-06-02T00:02:17.453193-07:00'
  3486. id: urn:uuid:8fa26ad3-ac39-4b72-85db-9554a83c1c1b
  3487. name: Metadata generation
  3488. schemaKey: Activity
  3489. startDate: '2023-06-02T00:02:17.412963-07:00'
  3490. wasAssociatedWith:
  3491. - identifier: RRID:SCR_019009
  3492. name: DANDI Command Line Interface
  3493. schemaKey: Software
  3494. url: https://github.com/dandi/dandi-cli
  3495. version: 0.54.0
  3496. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  3497. access:
  3498. - schemaKey: AccessRequirements
  3499. status: dandi:OpenAccess
  3500. approach:
  3501. - name: microscopy approach; cell population imaging
  3502. schemaKey: ApproachType
  3503. - name: behavioral approach
  3504. schemaKey: ApproachType
  3505. blobDateModified: '2023-06-01T23:09:51.119127-07:00'
  3506. contentSize: 1600722220
  3507. contentUrl:
  3508. - https://api.dandiarchive.org/api/assets/49727ce3-b4e0-49c6-8425-c5600340e901/download/
  3509. - https://dandiarchive.s3.amazonaws.com/blobs/5a5/0d3/5a50d343-d93e-46fc-acf2-ab309397d59e
  3510. dateModified: '2023-06-02T00:04:27.729575-07:00'
  3511. datePublished: '2023-06-02T20:22:54.437733+00:00'
  3512. digest:
  3513. dandi:dandi-etag: cd9e81b3c4ccb7f03f9a75eca27faecf-24
  3514. dandi:sha2-256: 6ff348cb73c10341bfb2d1d905b6e1846eef36e724769b96abe85f7dcf98082b
  3515. encodingFormat: application/x-nwb
  3516. id: dandiasset:49727ce3-b4e0-49c6-8425-c5600340e901
  3517. identifier: 49727ce3-b4e0-49c6-8425-c5600340e901
  3518. measurementTechnique:
  3519. - name: behavioral technique
  3520. schemaKey: MeasurementTechniqueType
  3521. - name: surgical technique
  3522. schemaKey: MeasurementTechniqueType
  3523. - name: analytical technique
  3524. schemaKey: MeasurementTechniqueType
  3525. path: sub-440299/sub-440299_ses-833016683_behavior+image+ophys.nwb
  3526. publishedBy:
  3527. endDate: '2023-06-02T20:22:54.437733+00:00'
  3528. id: urn:uuid:740f8fa0-c789-4fde-a56b-4000779ca263
  3529. name: DANDI publish
  3530. schemaKey: PublishActivity
  3531. startDate: '2023-06-02T20:22:54.437733+00:00'
  3532. wasAssociatedWith:
  3533. - id: urn:uuid:d44fcd28-87b8-4aef-8194-47d5e5d90265
  3534. identifier: RRID:SCR_017571
  3535. name: DANDI API
  3536. schemaKey: Software
  3537. version: 0.1.0
  3538. schemaKey: Asset
  3539. schemaVersion: 0.6.4
  3540. variableMeasured:
  3541. - schemaKey: PropertyValue
  3542. value: PlaneSegmentation
  3543. - schemaKey: PropertyValue
  3544. value: ImagingPlane
  3545. - schemaKey: PropertyValue
  3546. value: BehavioralTimeSeries
  3547. - schemaKey: PropertyValue
  3548. value: ProcessingModule
  3549. - schemaKey: PropertyValue
  3550. value: OpticalChannel
  3551. wasAttributedTo:
  3552. - age:
  3553. schemaKey: PropertyValue
  3554. unitText: ISO-8601 duration
  3555. value: P87DT9960.916S
  3556. valueReference:
  3557. schemaKey: PropertyValue
  3558. value: dandi:BirthReference
  3559. genotype: Slc17a7-IRES2-Cre/wt;Camk2a-tTA/wt;Ai93(TITL-GCaMP6f)/wt
  3560. identifier: '440299'
  3561. schemaKey: Participant
  3562. sex:
  3563. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  3564. name: Male
  3565. schemaKey: SexType
  3566. species:
  3567. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  3568. name: Mus musculus - House mouse
  3569. schemaKey: SpeciesType
  3570. wasGeneratedBy:
  3571. - description: Allen Institute OpenScope dataset
  3572. identifier: '833016683'
  3573. name: '833016683'
  3574. schemaKey: Session
  3575. startDate: '2019-03-06T18:46:00.916000-08:00'
  3576. - description: Metadata generated by DANDI cli
  3577. endDate: '2023-06-02T00:04:27.729575-07:00'
  3578. id: urn:uuid:b6c436dd-35fa-4e9f-8651-c6671b3140b8
  3579. name: Metadata generation
  3580. schemaKey: Activity
  3581. startDate: '2023-06-02T00:03:13.915432-07:00'
  3582. wasAssociatedWith:
  3583. - identifier: RRID:SCR_019009
  3584. name: DANDI Command Line Interface
  3585. schemaKey: Software
  3586. url: https://github.com/dandi/dandi-cli
  3587. version: 0.54.0
  3588. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  3589. access:
  3590. - schemaKey: AccessRequirements
  3591. status: dandi:OpenAccess
  3592. approach:
  3593. - name: microscopy approach; cell population imaging
  3594. schemaKey: ApproachType
  3595. - name: behavioral approach
  3596. schemaKey: ApproachType
  3597. blobDateModified: '2023-06-01T23:08:08.559655-07:00'
  3598. contentSize: 1599859580
  3599. contentUrl:
  3600. - https://api.dandiarchive.org/api/assets/e1a47cae-c2b6-46c3-ac4e-aed07dd2653c/download/
  3601. - https://dandiarchive.s3.amazonaws.com/blobs/44b/792/44b792bf-c64f-4586-9f14-06ca21577bd0
  3602. dateModified: '2023-06-02T00:04:39.431796-07:00'
  3603. datePublished: '2023-06-02T20:22:54.443861+00:00'
  3604. digest:
  3605. dandi:dandi-etag: 80a2de8f9aded50438b48652e54adae8-24
  3606. dandi:sha2-256: e11e121f74c1f31f39af0cd4c04e056e13b511486ea6d303f7aaa31a05c08190
  3607. encodingFormat: application/x-nwb
  3608. id: dandiasset:e1a47cae-c2b6-46c3-ac4e-aed07dd2653c
  3609. identifier: e1a47cae-c2b6-46c3-ac4e-aed07dd2653c
  3610. measurementTechnique:
  3611. - name: behavioral technique
  3612. schemaKey: MeasurementTechniqueType
  3613. - name: surgical technique
  3614. schemaKey: MeasurementTechniqueType
  3615. - name: analytical technique
  3616. schemaKey: MeasurementTechniqueType
  3617. path: sub-440208/sub-440208_ses-837081368_behavior+image+ophys.nwb
  3618. publishedBy:
  3619. endDate: '2023-06-02T20:22:54.443861+00:00'
  3620. id: urn:uuid:2fad42ff-b43f-48b2-8c65-b56ff834728a
  3621. name: DANDI publish
  3622. schemaKey: PublishActivity
  3623. startDate: '2023-06-02T20:22:54.443861+00:00'
  3624. wasAssociatedWith:
  3625. - id: urn:uuid:ef9558e6-ced9-4dd5-b977-1a3889834f8d
  3626. identifier: RRID:SCR_017571
  3627. name: DANDI API
  3628. schemaKey: Software
  3629. version: 0.1.0
  3630. schemaKey: Asset
  3631. schemaVersion: 0.6.4
  3632. variableMeasured:
  3633. - schemaKey: PropertyValue
  3634. value: PlaneSegmentation
  3635. - schemaKey: PropertyValue
  3636. value: ImagingPlane
  3637. - schemaKey: PropertyValue
  3638. value: BehavioralTimeSeries
  3639. - schemaKey: PropertyValue
  3640. value: ProcessingModule
  3641. - schemaKey: PropertyValue
  3642. value: OpticalChannel
  3643. wasAttributedTo:
  3644. - age:
  3645. schemaKey: PropertyValue
  3646. unitText: ISO-8601 duration
  3647. value: P96DT3716.557S
  3648. valueReference:
  3649. schemaKey: PropertyValue
  3650. value: dandi:BirthReference
  3651. genotype: Slc17a7-IRES2-Cre/wt;Camk2a-tTA/wt;Ai94(TITL-GCaMP6s)/wt
  3652. identifier: '440208'
  3653. schemaKey: Participant
  3654. sex:
  3655. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  3656. name: Female
  3657. schemaKey: SexType
  3658. species:
  3659. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  3660. name: Mus musculus - House mouse
  3661. schemaKey: SpeciesType
  3662. wasGeneratedBy:
  3663. - description: Allen Institute OpenScope dataset
  3664. identifier: '837081368'
  3665. name: '837081368'
  3666. schemaKey: Session
  3667. startDate: '2019-03-14T18:01:56.557000-07:00'
  3668. - description: Metadata generated by DANDI cli
  3669. endDate: '2023-06-02T00:04:39.431796-07:00'
  3670. id: urn:uuid:0256053a-3b9d-4a8e-8e84-f37a53425a0f
  3671. name: Metadata generation
  3672. schemaKey: Activity
  3673. startDate: '2023-06-02T00:03:31.136808-07:00'
  3674. wasAssociatedWith:
  3675. - identifier: RRID:SCR_019009
  3676. name: DANDI Command Line Interface
  3677. schemaKey: Software
  3678. url: https://github.com/dandi/dandi-cli
  3679. version: 0.54.0
  3680. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  3681. access:
  3682. - schemaKey: AccessRequirements
  3683. status: dandi:OpenAccess
  3684. approach:
  3685. - name: microscopy approach; cell population imaging
  3686. schemaKey: ApproachType
  3687. - name: behavioral approach
  3688. schemaKey: ApproachType
  3689. blobDateModified: '2023-06-01T22:55:36.280888-07:00'
  3690. contentSize: 1463185228
  3691. contentUrl:
  3692. - https://api.dandiarchive.org/api/assets/efa91e97-befc-4a2f-a9da-fefa746973f4/download/
  3693. - https://dandiarchive.s3.amazonaws.com/blobs/a0d/13f/a0d13fb4-b98e-4a06-ae9a-938f889d8663
  3694. dateModified: '2023-06-02T00:05:00.938383-07:00'
  3695. datePublished: '2023-06-02T20:22:54.478406+00:00'
  3696. digest:
  3697. dandi:dandi-etag: edf07abc5ee465cc12f2c8c04130409c-22
  3698. dandi:sha2-256: 7efd049547930b8ffa50b3b5c5da15462fdb250cab5b23d06f1ccdaae1e30864
  3699. encodingFormat: application/x-nwb
  3700. id: dandiasset:efa91e97-befc-4a2f-a9da-fefa746973f4
  3701. identifier: efa91e97-befc-4a2f-a9da-fefa746973f4
  3702. measurementTechnique:
  3703. - name: behavioral technique
  3704. schemaKey: MeasurementTechniqueType
  3705. - name: surgical technique
  3706. schemaKey: MeasurementTechniqueType
  3707. - name: analytical technique
  3708. schemaKey: MeasurementTechniqueType
  3709. path: sub-440299/sub-440299_ses-833870314_behavior+image+ophys.nwb
  3710. publishedBy:
  3711. endDate: '2023-06-02T20:22:54.478406+00:00'
  3712. id: urn:uuid:1aeec7ee-5b2c-40db-a85f-e456b0af8be6
  3713. name: DANDI publish
  3714. schemaKey: PublishActivity
  3715. startDate: '2023-06-02T20:22:54.478406+00:00'
  3716. wasAssociatedWith:
  3717. - id: urn:uuid:844bb661-b23f-4679-b9b9-7bf6445bed9c
  3718. identifier: RRID:SCR_017571
  3719. name: DANDI API
  3720. schemaKey: Software
  3721. version: 0.1.0
  3722. schemaKey: Asset
  3723. schemaVersion: 0.6.4
  3724. variableMeasured:
  3725. - schemaKey: PropertyValue
  3726. value: PlaneSegmentation
  3727. - schemaKey: PropertyValue
  3728. value: ImagingPlane
  3729. - schemaKey: PropertyValue
  3730. value: BehavioralTimeSeries
  3731. - schemaKey: PropertyValue
  3732. value: ProcessingModule
  3733. - schemaKey: PropertyValue
  3734. value: OpticalChannel
  3735. wasAttributedTo:
  3736. - age:
  3737. schemaKey: PropertyValue
  3738. unitText: ISO-8601 duration
  3739. value: P88DT11405.053S
  3740. valueReference:
  3741. schemaKey: PropertyValue
  3742. value: dandi:BirthReference
  3743. genotype: Slc17a7-IRES2-Cre/wt;Camk2a-tTA/wt;Ai93(TITL-GCaMP6f)/wt
  3744. identifier: '440299'
  3745. schemaKey: Participant
  3746. sex:
  3747. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  3748. name: Male
  3749. schemaKey: SexType
  3750. species:
  3751. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  3752. name: Mus musculus - House mouse
  3753. schemaKey: SpeciesType
  3754. wasGeneratedBy:
  3755. - description: Allen Institute OpenScope dataset
  3756. identifier: '833870314'
  3757. name: '833870314'
  3758. schemaKey: Session
  3759. startDate: '2019-03-07T19:10:05.053000-08:00'
  3760. - description: Metadata generated by DANDI cli
  3761. endDate: '2023-06-02T00:05:00.938383-07:00'
  3762. id: urn:uuid:d3c5d6a8-e2a5-4b87-8893-90bfc8801c10
  3763. name: Metadata generation
  3764. schemaKey: Activity
  3765. startDate: '2023-06-02T00:04:12.060776-07:00'
  3766. wasAssociatedWith:
  3767. - identifier: RRID:SCR_019009
  3768. name: DANDI Command Line Interface
  3769. schemaKey: Software
  3770. url: https://github.com/dandi/dandi-cli
  3771. version: 0.54.0
  3772. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  3773. access:
  3774. - schemaKey: AccessRequirements
  3775. status: dandi:OpenAccess
  3776. approach:
  3777. - name: microscopy approach; cell population imaging
  3778. schemaKey: ApproachType
  3779. - name: behavioral approach
  3780. schemaKey: ApproachType
  3781. blobDateModified: '2023-06-01T22:53:54.375011-07:00'
  3782. contentSize: 1325682556
  3783. contentUrl:
  3784. - https://api.dandiarchive.org/api/assets/3306a224-00d0-4503-96f9-43d40704c110/download/
  3785. - https://dandiarchive.s3.amazonaws.com/blobs/d1b/6f2/d1b6f22b-c514-479c-ba1c-2842a486fe69
  3786. dateModified: '2023-06-02T00:05:42.427696-07:00'
  3787. datePublished: '2023-06-02T20:22:54.495504+00:00'
  3788. digest:
  3789. dandi:dandi-etag: 207e9abda327992ac6e16a119dadb550-20
  3790. dandi:sha2-256: 1f9f9be34db71571f92f3bd05896b0c3e742ad5bc9cf9ca19b36487235a8ef5e
  3791. encodingFormat: application/x-nwb
  3792. id: dandiasset:3306a224-00d0-4503-96f9-43d40704c110
  3793. identifier: 3306a224-00d0-4503-96f9-43d40704c110
  3794. measurementTechnique:
  3795. - name: behavioral technique
  3796. schemaKey: MeasurementTechniqueType
  3797. - name: surgical technique
  3798. schemaKey: MeasurementTechniqueType
  3799. - name: analytical technique
  3800. schemaKey: MeasurementTechniqueType
  3801. path: sub-440299/sub-440299_ses-836464549_behavior+image+ophys.nwb
  3802. publishedBy:
  3803. endDate: '2023-06-02T20:22:54.495504+00:00'
  3804. id: urn:uuid:c1cca7fd-8647-49c6-b286-4e6da212ed98
  3805. name: DANDI publish
  3806. schemaKey: PublishActivity
  3807. startDate: '2023-06-02T20:22:54.495504+00:00'
  3808. wasAssociatedWith:
  3809. - id: urn:uuid:e21e9dac-854b-4de5-aea9-7cecab4211a5
  3810. identifier: RRID:SCR_017571
  3811. name: DANDI API
  3812. schemaKey: Software
  3813. version: 0.1.0
  3814. schemaKey: Asset
  3815. schemaVersion: 0.6.4
  3816. variableMeasured:
  3817. - schemaKey: PropertyValue
  3818. value: PlaneSegmentation
  3819. - schemaKey: PropertyValue
  3820. value: ImagingPlane
  3821. - schemaKey: PropertyValue
  3822. value: BehavioralTimeSeries
  3823. - schemaKey: PropertyValue
  3824. value: ProcessingModule
  3825. - schemaKey: PropertyValue
  3826. value: OpticalChannel
  3827. wasAttributedTo:
  3828. - age:
  3829. schemaKey: PropertyValue
  3830. unitText: ISO-8601 duration
  3831. value: P94DT4550.253S
  3832. valueReference:
  3833. schemaKey: PropertyValue
  3834. value: dandi:BirthReference
  3835. genotype: Slc17a7-IRES2-Cre/wt;Camk2a-tTA/wt;Ai93(TITL-GCaMP6f)/wt
  3836. identifier: '440299'
  3837. schemaKey: Participant
  3838. sex:
  3839. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  3840. name: Male
  3841. schemaKey: SexType
  3842. species:
  3843. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  3844. name: Mus musculus - House mouse
  3845. schemaKey: SpeciesType
  3846. wasGeneratedBy:
  3847. - description: Allen Institute OpenScope dataset
  3848. identifier: '836464549'
  3849. name: '836464549'
  3850. schemaKey: Session
  3851. startDate: '2019-03-13T18:15:50.253000-07:00'
  3852. - description: Metadata generated by DANDI cli
  3853. endDate: '2023-06-02T00:05:42.427696-07:00'
  3854. id: urn:uuid:e0724b1b-371a-411b-9b5e-1ce2654fb2ed
  3855. name: Metadata generation
  3856. schemaKey: Activity
  3857. startDate: '2023-06-02T00:05:28.872383-07:00'
  3858. wasAssociatedWith:
  3859. - identifier: RRID:SCR_019009
  3860. name: DANDI Command Line Interface
  3861. schemaKey: Software
  3862. url: https://github.com/dandi/dandi-cli
  3863. version: 0.54.0
  3864. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  3865. access:
  3866. - schemaKey: AccessRequirements
  3867. status: dandi:OpenAccess
  3868. approach:
  3869. - name: microscopy approach; cell population imaging
  3870. schemaKey: ApproachType
  3871. - name: behavioral approach
  3872. schemaKey: ApproachType
  3873. blobDateModified: '2023-06-01T23:05:53.253289-07:00'
  3874. contentSize: 1317228108
  3875. contentUrl:
  3876. - https://api.dandiarchive.org/api/assets/96b9f4e2-3ddf-4699-984c-6608d4843b45/download/
  3877. - https://dandiarchive.s3.amazonaws.com/blobs/8f7/90c/8f790c99-edde-4045-a132-096183935771
  3878. dateModified: '2023-06-02T00:05:49.058300-07:00'
  3879. datePublished: '2023-06-02T20:22:54.449358+00:00'
  3880. digest:
  3881. dandi:dandi-etag: 7b5110a6a86dc1baecb2aef6af7d6f77-20
  3882. dandi:sha2-256: 0a088ab83907ac9cdad378aa23b405123997f4276c66f5db83be20c82bd0deb1
  3883. encodingFormat: application/x-nwb
  3884. id: dandiasset:96b9f4e2-3ddf-4699-984c-6608d4843b45
  3885. identifier: 96b9f4e2-3ddf-4699-984c-6608d4843b45
  3886. measurementTechnique:
  3887. - name: behavioral technique
  3888. schemaKey: MeasurementTechniqueType
  3889. - name: surgical technique
  3890. schemaKey: MeasurementTechniqueType
  3891. - name: analytical technique
  3892. schemaKey: MeasurementTechniqueType
  3893. path: sub-440299/sub-440299_ses-837094917_behavior+image+ophys.nwb
  3894. publishedBy:
  3895. endDate: '2023-06-02T20:22:54.449358+00:00'
  3896. id: urn:uuid:f3c086a8-c362-455d-80e3-4917755c75c3
  3897. name: DANDI publish
  3898. schemaKey: PublishActivity
  3899. startDate: '2023-06-02T20:22:54.449358+00:00'
  3900. wasAssociatedWith:
  3901. - id: urn:uuid:4cd36e51-bfbc-4e1d-bbe1-872eef7031a0
  3902. identifier: RRID:SCR_017571
  3903. name: DANDI API
  3904. schemaKey: Software
  3905. version: 0.1.0
  3906. schemaKey: Asset
  3907. schemaVersion: 0.6.4
  3908. variableMeasured:
  3909. - schemaKey: PropertyValue
  3910. value: PlaneSegmentation
  3911. - schemaKey: PropertyValue
  3912. value: ImagingPlane
  3913. - schemaKey: PropertyValue
  3914. value: BehavioralTimeSeries
  3915. - schemaKey: PropertyValue
  3916. value: ProcessingModule
  3917. - schemaKey: PropertyValue
  3918. value: OpticalChannel
  3919. wasAttributedTo:
  3920. - age:
  3921. schemaKey: PropertyValue
  3922. unitText: ISO-8601 duration
  3923. value: P95DT4744.746S
  3924. valueReference:
  3925. schemaKey: PropertyValue
  3926. value: dandi:BirthReference
  3927. genotype: Slc17a7-IRES2-Cre/wt;Camk2a-tTA/wt;Ai93(TITL-GCaMP6f)/wt
  3928. identifier: '440299'
  3929. schemaKey: Participant
  3930. sex:
  3931. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  3932. name: Male
  3933. schemaKey: SexType
  3934. species:
  3935. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  3936. name: Mus musculus - House mouse
  3937. schemaKey: SpeciesType
  3938. wasGeneratedBy:
  3939. - description: Allen Institute OpenScope dataset
  3940. identifier: '837094917'
  3941. name: '837094917'
  3942. schemaKey: Session
  3943. startDate: '2019-03-14T18:19:04.746000-07:00'
  3944. - description: Metadata generated by DANDI cli
  3945. endDate: '2023-06-02T00:05:49.058300-07:00'
  3946. id: urn:uuid:9c41e1a6-4b3e-42bf-98cb-7be88a11f9fa
  3947. name: Metadata generation
  3948. schemaKey: Activity
  3949. startDate: '2023-06-02T00:05:35.446457-07:00'
  3950. wasAssociatedWith:
  3951. - identifier: RRID:SCR_019009
  3952. name: DANDI Command Line Interface
  3953. schemaKey: Software
  3954. url: https://github.com/dandi/dandi-cli
  3955. version: 0.54.0
Tip!

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

Comments

Loading...