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 149 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
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
  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: behavioral approach
  7. schemaKey: ApproachType
  8. blobDateModified: '2023-04-03T12:09:16.804681-04:00'
  9. contentSize: 7632792
  10. contentUrl:
  11. - https://api.dandiarchive.org/api/assets/45256262-0c04-414f-aed0-bc2a3298d8da/download/
  12. - https://dandiarchive-embargo.s3.amazonaws.com/000471/blobs/416/5a2/4165a286-75d8-4e58-8e76-b33f032669d6
  13. dateModified: '2023-04-03T12:21:12.405968-04:00'
  14. digest:
  15. dandi:dandi-etag: 4acce6794d261e3090f08d2fff55cf1f-1
  16. dandi:sha2-256: a38edf16807823cf3395365ddb2b9749911ac194adeeeff4e00e74af8606d323
  17. encodingFormat: application/x-nwb
  18. id: dandiasset:45256262-0c04-414f-aed0-bc2a3298d8da
  19. identifier: 45256262-0c04-414f-aed0-bc2a3298d8da
  20. measurementTechnique:
  21. - name: behavioral technique
  22. schemaKey: MeasurementTechniqueType
  23. - name: analytical technique
  24. schemaKey: MeasurementTechniqueType
  25. path: sub-f#0800/sub-f#0800_ses-20190212T120225_behavior.nwb
  26. schemaKey: Asset
  27. schemaVersion: 0.6.4
  28. variableMeasured:
  29. - schemaKey: PropertyValue
  30. value: BehavioralTimeSeries
  31. - schemaKey: PropertyValue
  32. value: ProcessingModule
  33. wasAttributedTo:
  34. - age:
  35. schemaKey: PropertyValue
  36. unitText: ISO-8601 duration
  37. value: P4D
  38. valueReference:
  39. schemaKey: PropertyValue
  40. value: dandi:BirthReference
  41. genotype: Kir / MB131B
  42. identifier: f#0800
  43. schemaKey: Participant
  44. sex:
  45. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  46. name: Female
  47. schemaKey: SexType
  48. species:
  49. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7227
  50. name: Drosophila melanogaster - Fruit fly
  51. schemaKey: SpeciesType
  52. wasGeneratedBy:
  53. - description: find neurons involved in visual learning in an appetitive conditioning
  54. paradigm
  55. name: Acquisition session
  56. schemaKey: Session
  57. startDate: '2019-02-12T12:02:25-05:00'
  58. - description: Metadata generated by DANDI cli
  59. endDate: '2023-04-03T12:21:12.405955-04:00'
  60. id: urn:uuid:8bcaccc0-367f-4379-bd4f-e475e0c7cdd4
  61. name: Metadata generation
  62. schemaKey: Activity
  63. startDate: '2023-04-03T12:21:12.398378-04:00'
  64. wasAssociatedWith:
  65. - identifier: RRID:SCR_019009
  66. name: DANDI Command Line Interface
  67. schemaKey: Software
  68. url: https://github.com/dandi/dandi-cli
  69. version: 0.51.0
  70. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  71. access:
  72. - schemaKey: AccessRequirements
  73. status: dandi:OpenAccess
  74. approach:
  75. - name: behavioral approach
  76. schemaKey: ApproachType
  77. blobDateModified: '2023-04-03T12:09:11.565495-04:00'
  78. contentSize: 7636568
  79. contentUrl:
  80. - https://api.dandiarchive.org/api/assets/88dfa94a-e043-4204-b04d-e1472a3c08d7/download/
  81. - https://dandiarchive-embargo.s3.amazonaws.com/000471/blobs/85d/6d8/85d6d8dc-920b-49de-8501-88d43ac88af0
  82. dateModified: '2023-04-03T12:21:12.548769-04:00'
  83. digest:
  84. dandi:dandi-etag: 2f754124350bfe3f1d90afef3918e17d-1
  85. dandi:sha2-256: 3d4390339410b844742c0b1fb840fef5897ef09f3cc86403f68caf06446c2c7a
  86. encodingFormat: application/x-nwb
  87. id: dandiasset:88dfa94a-e043-4204-b04d-e1472a3c08d7
  88. identifier: 88dfa94a-e043-4204-b04d-e1472a3c08d7
  89. measurementTechnique:
  90. - name: behavioral technique
  91. schemaKey: MeasurementTechniqueType
  92. - name: analytical technique
  93. schemaKey: MeasurementTechniqueType
  94. path: sub-f#0787/sub-f#0787_ses-20190114T162834_behavior.nwb
  95. schemaKey: Asset
  96. schemaVersion: 0.6.4
  97. variableMeasured:
  98. - schemaKey: PropertyValue
  99. value: BehavioralTimeSeries
  100. - schemaKey: PropertyValue
  101. value: ProcessingModule
  102. wasAttributedTo:
  103. - age:
  104. schemaKey: PropertyValue
  105. unitText: ISO-8601 duration
  106. value: P4D
  107. valueReference:
  108. schemaKey: PropertyValue
  109. value: dandi:BirthReference
  110. genotype: DL / MB607B
  111. identifier: f#0787
  112. schemaKey: Participant
  113. sex:
  114. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  115. name: Female
  116. schemaKey: SexType
  117. species:
  118. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7227
  119. name: Drosophila melanogaster - Fruit fly
  120. schemaKey: SpeciesType
  121. wasGeneratedBy:
  122. - description: find neurons involved in visual learning in an appetitive conditioning
  123. paradigm
  124. name: Acquisition session
  125. schemaKey: Session
  126. startDate: '2019-01-14T16:28:34-05:00'
  127. - description: Metadata generated by DANDI cli
  128. endDate: '2023-04-03T12:21:12.548761-04:00'
  129. id: urn:uuid:880af0b4-c033-4be7-bdc4-09edf7007fcd
  130. name: Metadata generation
  131. schemaKey: Activity
  132. startDate: '2023-04-03T12:21:12.548088-04:00'
  133. wasAssociatedWith:
  134. - identifier: RRID:SCR_019009
  135. name: DANDI Command Line Interface
  136. schemaKey: Software
  137. url: https://github.com/dandi/dandi-cli
  138. version: 0.51.0
  139. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  140. access:
  141. - schemaKey: AccessRequirements
  142. status: dandi:OpenAccess
  143. approach:
  144. - name: behavioral approach
  145. schemaKey: ApproachType
  146. blobDateModified: '2023-04-03T12:09:10.914255-04:00'
  147. contentSize: 7632792
  148. contentUrl:
  149. - https://api.dandiarchive.org/api/assets/2c40c5dd-3080-46f1-909a-db1af0da341d/download/
  150. - https://dandiarchive-embargo.s3.amazonaws.com/000471/blobs/016/04b/01604bc0-43e4-417f-989c-ac3efb687fbb
  151. dateModified: '2023-04-03T12:21:12.143057-04:00'
  152. digest:
  153. dandi:dandi-etag: 0f321f1c4323c0e04b90166c1c22162c-1
  154. dandi:sha2-256: dc7299fe2aa840b72892e77204b35396b5fef55ce6c94590ede0960194f671c4
  155. encodingFormat: application/x-nwb
  156. id: dandiasset:2c40c5dd-3080-46f1-909a-db1af0da341d
  157. identifier: 2c40c5dd-3080-46f1-909a-db1af0da341d
  158. measurementTechnique:
  159. - name: behavioral technique
  160. schemaKey: MeasurementTechniqueType
  161. - name: analytical technique
  162. schemaKey: MeasurementTechniqueType
  163. path: sub-f#0773/sub-f#0773_ses-20181004T155447_behavior.nwb
  164. schemaKey: Asset
  165. schemaVersion: 0.6.4
  166. variableMeasured:
  167. - schemaKey: PropertyValue
  168. value: BehavioralTimeSeries
  169. - schemaKey: PropertyValue
  170. value: ProcessingModule
  171. wasAttributedTo:
  172. - age:
  173. schemaKey: PropertyValue
  174. unitText: ISO-8601 duration
  175. value: P4D
  176. valueReference:
  177. schemaKey: PropertyValue
  178. value: dandi:BirthReference
  179. genotype: DL / MB607B
  180. identifier: f#0773
  181. schemaKey: Participant
  182. sex:
  183. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  184. name: Female
  185. schemaKey: SexType
  186. species:
  187. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7227
  188. name: Drosophila melanogaster - Fruit fly
  189. schemaKey: SpeciesType
  190. wasGeneratedBy:
  191. - description: find neurons involved in visual learning in an appetitive conditioning
  192. paradigm
  193. name: Acquisition session
  194. schemaKey: Session
  195. startDate: '2018-10-04T15:54:47-04:00'
  196. - description: Metadata generated by DANDI cli
  197. endDate: '2023-04-03T12:21:12.143048-04:00'
  198. id: urn:uuid:ec208d17-da1d-4e3a-b0bb-f50f18ff9df0
  199. name: Metadata generation
  200. schemaKey: Activity
  201. startDate: '2023-04-03T12:21:12.128425-04:00'
  202. wasAssociatedWith:
  203. - identifier: RRID:SCR_019009
  204. name: DANDI Command Line Interface
  205. schemaKey: Software
  206. url: https://github.com/dandi/dandi-cli
  207. version: 0.51.0
  208. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  209. access:
  210. - schemaKey: AccessRequirements
  211. status: dandi:OpenAccess
  212. approach:
  213. - name: behavioral approach
  214. schemaKey: ApproachType
  215. blobDateModified: '2023-04-03T12:09:03.657358-04:00'
  216. contentSize: 11617432
  217. contentUrl:
  218. - https://api.dandiarchive.org/api/assets/a9a2ab6d-53f1-46a3-904e-7e11f4c50d12/download/
  219. - https://dandiarchive-embargo.s3.amazonaws.com/000471/blobs/5d2/15a/5d215a41-fff1-48b1-bfb8-13a5f1f9c870
  220. dateModified: '2023-04-03T12:21:12.175897-04:00'
  221. digest:
  222. dandi:dandi-etag: 9f68e4bb1288476f3d8c1dfd0b5dfe5a-1
  223. dandi:sha2-256: 35eb12a8617961a6e17be5d7075ae728fe72b74c5cd1bdfff7d66cc59c632a11
  224. encodingFormat: application/x-nwb
  225. id: dandiasset:a9a2ab6d-53f1-46a3-904e-7e11f4c50d12
  226. identifier: a9a2ab6d-53f1-46a3-904e-7e11f4c50d12
  227. measurementTechnique:
  228. - name: behavioral technique
  229. schemaKey: MeasurementTechniqueType
  230. - name: analytical technique
  231. schemaKey: MeasurementTechniqueType
  232. path: sub-f#0728/sub-f#0728_ses-20180521T170801_behavior.nwb
  233. schemaKey: Asset
  234. schemaVersion: 0.6.4
  235. variableMeasured:
  236. - schemaKey: PropertyValue
  237. value: BehavioralTimeSeries
  238. - schemaKey: PropertyValue
  239. value: ProcessingModule
  240. wasAttributedTo:
  241. - age:
  242. schemaKey: PropertyValue
  243. unitText: ISO-8601 duration
  244. value: P4D
  245. valueReference:
  246. schemaKey: PropertyValue
  247. value: dandi:BirthReference
  248. genotype: Kir / MB607B
  249. identifier: f#0728
  250. schemaKey: Participant
  251. sex:
  252. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  253. name: Female
  254. schemaKey: SexType
  255. species:
  256. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7227
  257. name: Drosophila melanogaster - Fruit fly
  258. schemaKey: SpeciesType
  259. wasGeneratedBy:
  260. - description: find neurons involved in visual learning in an appetitive conditioning
  261. paradigm
  262. name: Acquisition session
  263. schemaKey: Session
  264. startDate: '2018-05-21T17:08:01-04:00'
  265. - description: Metadata generated by DANDI cli
  266. endDate: '2023-04-03T12:21:12.175886-04:00'
  267. id: urn:uuid:ee85e6c1-a52a-4195-8614-4a2f2fe4b827
  268. name: Metadata generation
  269. schemaKey: Activity
  270. startDate: '2023-04-03T12:21:12.162208-04:00'
  271. wasAssociatedWith:
  272. - identifier: RRID:SCR_019009
  273. name: DANDI Command Line Interface
  274. schemaKey: Software
  275. url: https://github.com/dandi/dandi-cli
  276. version: 0.51.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: behavioral approach
  283. schemaKey: ApproachType
  284. blobDateModified: '2023-04-03T12:09:04.310991-04:00'
  285. contentSize: 11613080
  286. contentUrl:
  287. - https://api.dandiarchive.org/api/assets/0aab5aeb-2e49-4039-ac59-dad74dc9c6a6/download/
  288. - https://dandiarchive-embargo.s3.amazonaws.com/000471/blobs/73f/465/73f46510-949c-472a-b98d-c5cf399f1fbc
  289. dateModified: '2023-04-03T12:21:12.309120-04:00'
  290. digest:
  291. dandi:dandi-etag: dadffe74ee74450a9bbf8c153ee6fc4c-1
  292. dandi:sha2-256: 22667f8775fed3bb8feedee7deb527f7a909fc045bef948e97d1dced6e659372
  293. encodingFormat: application/x-nwb
  294. id: dandiasset:0aab5aeb-2e49-4039-ac59-dad74dc9c6a6
  295. identifier: 0aab5aeb-2e49-4039-ac59-dad74dc9c6a6
  296. measurementTechnique:
  297. - name: behavioral technique
  298. schemaKey: MeasurementTechniqueType
  299. - name: analytical technique
  300. schemaKey: MeasurementTechniqueType
  301. path: sub-f#0729/sub-f#0729_ses-20180524T174914_behavior.nwb
  302. schemaKey: Asset
  303. schemaVersion: 0.6.4
  304. variableMeasured:
  305. - schemaKey: PropertyValue
  306. value: BehavioralTimeSeries
  307. - schemaKey: PropertyValue
  308. value: ProcessingModule
  309. wasAttributedTo:
  310. - age:
  311. schemaKey: PropertyValue
  312. unitText: ISO-8601 duration
  313. value: P4D
  314. valueReference:
  315. schemaKey: PropertyValue
  316. value: dandi:BirthReference
  317. genotype: DL / MB607B
  318. identifier: f#0729
  319. schemaKey: Participant
  320. sex:
  321. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  322. name: Female
  323. schemaKey: SexType
  324. species:
  325. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7227
  326. name: Drosophila melanogaster - Fruit fly
  327. schemaKey: SpeciesType
  328. wasGeneratedBy:
  329. - description: find neurons involved in visual learning in an appetitive conditioning
  330. paradigm
  331. name: Acquisition session
  332. schemaKey: Session
  333. startDate: '2018-05-24T17:49:14-04:00'
  334. - description: Metadata generated by DANDI cli
  335. endDate: '2023-04-03T12:21:12.309104-04:00'
  336. id: urn:uuid:14888175-f93d-4dcd-9a10-c1494868cbf6
  337. name: Metadata generation
  338. schemaKey: Activity
  339. startDate: '2023-04-03T12:21:12.295515-04:00'
  340. wasAssociatedWith:
  341. - identifier: RRID:SCR_019009
  342. name: DANDI Command Line Interface
  343. schemaKey: Software
  344. url: https://github.com/dandi/dandi-cli
  345. version: 0.51.0
  346. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  347. access:
  348. - schemaKey: AccessRequirements
  349. status: dandi:OpenAccess
  350. approach:
  351. - name: behavioral approach
  352. schemaKey: ApproachType
  353. blobDateModified: '2023-04-03T12:08:48.100443-04:00'
  354. contentSize: 11617304
  355. contentUrl:
  356. - https://api.dandiarchive.org/api/assets/d94eed95-4e3e-457b-8e81-3ac2a2f27eca/download/
  357. - https://dandiarchive-embargo.s3.amazonaws.com/000471/blobs/4d1/81e/4d181eb8-3785-4d32-bcfa-91e6b0811197
  358. dateModified: '2023-04-03T12:21:17.267538-04:00'
  359. digest:
  360. dandi:dandi-etag: 6e1f122f413fa975d4360ade6cae9113-1
  361. dandi:sha2-256: 81283945b649a310018de8f21446770bf1e38b356380b284863055801b3c7f2f
  362. encodingFormat: application/x-nwb
  363. id: dandiasset:d94eed95-4e3e-457b-8e81-3ac2a2f27eca
  364. identifier: d94eed95-4e3e-457b-8e81-3ac2a2f27eca
  365. measurementTechnique:
  366. - name: behavioral technique
  367. schemaKey: MeasurementTechniqueType
  368. - name: analytical technique
  369. schemaKey: MeasurementTechniqueType
  370. path: sub-f#0655/sub-f#0655_ses-20171212T200037_behavior.nwb
  371. schemaKey: Asset
  372. schemaVersion: 0.6.4
  373. variableMeasured:
  374. - schemaKey: PropertyValue
  375. value: BehavioralTimeSeries
  376. - schemaKey: PropertyValue
  377. value: ProcessingModule
  378. wasAttributedTo:
  379. - age:
  380. schemaKey: PropertyValue
  381. unitText: ISO-8601 duration
  382. value: P4D
  383. valueReference:
  384. schemaKey: PropertyValue
  385. value: dandi:BirthReference
  386. genotype: Kir / MB607B
  387. identifier: f#0655
  388. schemaKey: Participant
  389. sex:
  390. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  391. name: Female
  392. schemaKey: SexType
  393. species:
  394. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7227
  395. name: Drosophila melanogaster - Fruit fly
  396. schemaKey: SpeciesType
  397. wasGeneratedBy:
  398. - description: find neurons involved in visual learning in an appetitive conditioning
  399. paradigm
  400. name: Acquisition session
  401. schemaKey: Session
  402. startDate: '2017-12-12T20:00:37-05:00'
  403. - description: Metadata generated by DANDI cli
  404. endDate: '2023-04-03T12:21:17.267525-04:00'
  405. id: urn:uuid:e2a496d0-e9da-4328-81a4-f855dfd30736
  406. name: Metadata generation
  407. schemaKey: Activity
  408. startDate: '2023-04-03T12:21:17.259077-04:00'
  409. wasAssociatedWith:
  410. - identifier: RRID:SCR_019009
  411. name: DANDI Command Line Interface
  412. schemaKey: Software
  413. url: https://github.com/dandi/dandi-cli
  414. version: 0.51.0
  415. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  416. access:
  417. - schemaKey: AccessRequirements
  418. status: dandi:OpenAccess
  419. approach:
  420. - name: behavioral approach
  421. schemaKey: ApproachType
  422. blobDateModified: '2023-04-03T12:08:52.755290-04:00'
  423. contentSize: 11613016
  424. contentUrl:
  425. - https://api.dandiarchive.org/api/assets/61dce03e-ad53-4519-bb40-77483cf7e2f9/download/
  426. - https://dandiarchive-embargo.s3.amazonaws.com/000471/blobs/866/d44/866d44a1-b25c-40a9-a07a-c2df70de6e91
  427. dateModified: '2023-04-03T12:21:17.603597-04:00'
  428. digest:
  429. dandi:dandi-etag: e9f69dda03569f2ee7ba741192cba135-1
  430. dandi:sha2-256: fcf6f743bb0ff867279d3bcac26c7dbe6b249e86993bf09f8065cfff431c467b
  431. encodingFormat: application/x-nwb
  432. id: dandiasset:61dce03e-ad53-4519-bb40-77483cf7e2f9
  433. identifier: 61dce03e-ad53-4519-bb40-77483cf7e2f9
  434. measurementTechnique:
  435. - name: behavioral technique
  436. schemaKey: MeasurementTechniqueType
  437. - name: analytical technique
  438. schemaKey: MeasurementTechniqueType
  439. path: sub-f#0664/sub-f#0664_ses-20171221T161611_behavior.nwb
  440. schemaKey: Asset
  441. schemaVersion: 0.6.4
  442. variableMeasured:
  443. - schemaKey: PropertyValue
  444. value: BehavioralTimeSeries
  445. - schemaKey: PropertyValue
  446. value: ProcessingModule
  447. wasAttributedTo:
  448. - age:
  449. schemaKey: PropertyValue
  450. unitText: ISO-8601 duration
  451. value: P4D
  452. valueReference:
  453. schemaKey: PropertyValue
  454. value: dandi:BirthReference
  455. genotype: Kir / MB008B
  456. identifier: f#0664
  457. schemaKey: Participant
  458. sex:
  459. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  460. name: Female
  461. schemaKey: SexType
  462. species:
  463. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7227
  464. name: Drosophila melanogaster - Fruit fly
  465. schemaKey: SpeciesType
  466. wasGeneratedBy:
  467. - description: find neurons involved in visual learning in an appetitive conditioning
  468. paradigm
  469. name: Acquisition session
  470. schemaKey: Session
  471. startDate: '2017-12-21T16:16:11-05:00'
  472. - description: Metadata generated by DANDI cli
  473. endDate: '2023-04-03T12:21:17.603588-04:00'
  474. id: urn:uuid:36a26fc7-2304-46b7-b857-3437fd6064a5
  475. name: Metadata generation
  476. schemaKey: Activity
  477. startDate: '2023-04-03T12:21:17.588057-04:00'
  478. wasAssociatedWith:
  479. - identifier: RRID:SCR_019009
  480. name: DANDI Command Line Interface
  481. schemaKey: Software
  482. url: https://github.com/dandi/dandi-cli
  483. version: 0.51.0
  484. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  485. access:
  486. - schemaKey: AccessRequirements
  487. status: dandi:OpenAccess
  488. approach:
  489. - name: behavioral approach
  490. schemaKey: ApproachType
  491. blobDateModified: '2023-04-03T12:08:40.785625-04:00'
  492. contentSize: 11616600
  493. contentUrl:
  494. - https://api.dandiarchive.org/api/assets/fc76c045-1886-4723-8b3b-cc35aab264dd/download/
  495. - https://dandiarchive-embargo.s3.amazonaws.com/000471/blobs/e28/41a/e2841aba-99d9-4dc1-9252-7c16e6b58e24
  496. dateModified: '2023-04-03T12:21:17.673462-04:00'
  497. digest:
  498. dandi:dandi-etag: ee4764fbfcf9646b282428e293909e01-1
  499. dandi:sha2-256: 519725a45abcb4d0184b293e3dfa7f7745749ff8b146d11899f5603e583ab454
  500. encodingFormat: application/x-nwb
  501. id: dandiasset:fc76c045-1886-4723-8b3b-cc35aab264dd
  502. identifier: fc76c045-1886-4723-8b3b-cc35aab264dd
  503. measurementTechnique:
  504. - name: behavioral technique
  505. schemaKey: MeasurementTechniqueType
  506. - name: analytical technique
  507. schemaKey: MeasurementTechniqueType
  508. path: sub-f#0607/sub-f#0607_ses-20170829T205738_behavior.nwb
  509. schemaKey: Asset
  510. schemaVersion: 0.6.4
  511. variableMeasured:
  512. - schemaKey: PropertyValue
  513. value: BehavioralTimeSeries
  514. - schemaKey: PropertyValue
  515. value: ProcessingModule
  516. wasAttributedTo:
  517. - age:
  518. schemaKey: PropertyValue
  519. unitText: ISO-8601 duration
  520. value: P4D
  521. valueReference:
  522. schemaKey: PropertyValue
  523. value: dandi:BirthReference
  524. genotype: Kir / MB417B
  525. identifier: f#0607
  526. schemaKey: Participant
  527. sex:
  528. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  529. name: Female
  530. schemaKey: SexType
  531. species:
  532. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7227
  533. name: Drosophila melanogaster - Fruit fly
  534. schemaKey: SpeciesType
  535. wasGeneratedBy:
  536. - description: find neurons involved in visual learning in an appetitive conditioning
  537. paradigm
  538. name: Acquisition session
  539. schemaKey: Session
  540. startDate: '2017-08-29T20:57:38-04:00'
  541. - description: Metadata generated by DANDI cli
  542. endDate: '2023-04-03T12:21:17.673453-04:00'
  543. id: urn:uuid:34eb5ee4-3c9a-4499-80f5-8484663b86e1
  544. name: Metadata generation
  545. schemaKey: Activity
  546. startDate: '2023-04-03T12:21:17.651146-04: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.51.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: behavioral approach
  559. schemaKey: ApproachType
  560. blobDateModified: '2023-04-03T12:08:41.630444-04:00'
  561. contentSize: 11616728
  562. contentUrl:
  563. - https://api.dandiarchive.org/api/assets/ec95ca9e-5d88-4a0f-82a9-d544f3c33e50/download/
  564. - https://dandiarchive-embargo.s3.amazonaws.com/000471/blobs/e57/56f/e5756fa9-e766-4216-8e93-f9aad19d9877
  565. dateModified: '2023-04-03T12:21:17.634641-04:00'
  566. digest:
  567. dandi:dandi-etag: d88bfa825aee1447b8e26852b5e7c38a-1
  568. dandi:sha2-256: 076ed47e9c214e08a348ece6291d7140fd5ba2e2553a675d529e000f9f19e825
  569. encodingFormat: application/x-nwb
  570. id: dandiasset:ec95ca9e-5d88-4a0f-82a9-d544f3c33e50
  571. identifier: ec95ca9e-5d88-4a0f-82a9-d544f3c33e50
  572. measurementTechnique:
  573. - name: behavioral technique
  574. schemaKey: MeasurementTechniqueType
  575. - name: analytical technique
  576. schemaKey: MeasurementTechniqueType
  577. path: sub-f#0609/sub-f#0609_ses-20170830T205241_behavior.nwb
  578. schemaKey: Asset
  579. schemaVersion: 0.6.4
  580. variableMeasured:
  581. - schemaKey: PropertyValue
  582. value: BehavioralTimeSeries
  583. - schemaKey: PropertyValue
  584. value: ProcessingModule
  585. wasAttributedTo:
  586. - age:
  587. schemaKey: PropertyValue
  588. unitText: ISO-8601 duration
  589. value: P4D
  590. valueReference:
  591. schemaKey: PropertyValue
  592. value: dandi:BirthReference
  593. genotype: Kir / MB607B
  594. identifier: f#0609
  595. schemaKey: Participant
  596. sex:
  597. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  598. name: Female
  599. schemaKey: SexType
  600. species:
  601. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7227
  602. name: Drosophila melanogaster - Fruit fly
  603. schemaKey: SpeciesType
  604. wasGeneratedBy:
  605. - description: find neurons involved in visual learning in an appetitive conditioning
  606. paradigm
  607. name: Acquisition session
  608. schemaKey: Session
  609. startDate: '2017-08-30T20:52:41-04:00'
  610. - description: Metadata generated by DANDI cli
  611. endDate: '2023-04-03T12:21:17.634635-04:00'
  612. id: urn:uuid:e6a01061-ef76-4d05-9491-ce828239f366
  613. name: Metadata generation
  614. schemaKey: Activity
  615. startDate: '2023-04-03T12:21:17.630996-04:00'
  616. wasAssociatedWith:
  617. - identifier: RRID:SCR_019009
  618. name: DANDI Command Line Interface
  619. schemaKey: Software
  620. url: https://github.com/dandi/dandi-cli
  621. version: 0.51.0
  622. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  623. access:
  624. - schemaKey: AccessRequirements
  625. status: dandi:OpenAccess
  626. approach:
  627. - name: behavioral approach
  628. schemaKey: ApproachType
  629. blobDateModified: '2023-04-03T12:08:52.093101-04:00'
  630. contentSize: 11612952
  631. contentUrl:
  632. - https://api.dandiarchive.org/api/assets/a8b325cd-0787-42b6-9d22-9ac24f7a2875/download/
  633. - https://dandiarchive-embargo.s3.amazonaws.com/000471/blobs/d2c/cbb/d2ccbbda-b0fe-4827-bcb3-ab202ce54d73
  634. dateModified: '2023-04-03T12:21:17.970097-04:00'
  635. digest:
  636. dandi:dandi-etag: 9585488bcc4adece16bcaa3b1cbef278-1
  637. dandi:sha2-256: 185c83d5b6c603b559f8c1e6e6773620313e565e98893f51ea26c5d81a4aa7e4
  638. encodingFormat: application/x-nwb
  639. id: dandiasset:a8b325cd-0787-42b6-9d22-9ac24f7a2875
  640. identifier: a8b325cd-0787-42b6-9d22-9ac24f7a2875
  641. measurementTechnique:
  642. - name: behavioral technique
  643. schemaKey: MeasurementTechniqueType
  644. - name: analytical technique
  645. schemaKey: MeasurementTechniqueType
  646. path: sub-f#0662/sub-f#0662_ses-20171220T194925_behavior.nwb
  647. schemaKey: Asset
  648. schemaVersion: 0.6.4
  649. variableMeasured:
  650. - schemaKey: PropertyValue
  651. value: BehavioralTimeSeries
  652. - schemaKey: PropertyValue
  653. value: ProcessingModule
  654. wasAttributedTo:
  655. - age:
  656. schemaKey: PropertyValue
  657. unitText: ISO-8601 duration
  658. value: P4D
  659. valueReference:
  660. schemaKey: PropertyValue
  661. value: dandi:BirthReference
  662. genotype: Kir / MB131B
  663. identifier: f#0662
  664. schemaKey: Participant
  665. sex:
  666. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  667. name: Female
  668. schemaKey: SexType
  669. species:
  670. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7227
  671. name: Drosophila melanogaster - Fruit fly
  672. schemaKey: SpeciesType
  673. wasGeneratedBy:
  674. - description: find neurons involved in visual learning in an appetitive conditioning
  675. paradigm
  676. name: Acquisition session
  677. schemaKey: Session
  678. startDate: '2017-12-20T19:49:25-05:00'
  679. - description: Metadata generated by DANDI cli
  680. endDate: '2023-04-03T12:21:17.970082-04:00'
  681. id: urn:uuid:d12875c2-e671-468a-887d-fdf71cc318f7
  682. name: Metadata generation
  683. schemaKey: Activity
  684. startDate: '2023-04-03T12:21:17.968557-04:00'
  685. wasAssociatedWith:
  686. - identifier: RRID:SCR_019009
  687. name: DANDI Command Line Interface
  688. schemaKey: Software
  689. url: https://github.com/dandi/dandi-cli
  690. version: 0.51.0
  691. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  692. access:
  693. - schemaKey: AccessRequirements
  694. status: dandi:OpenAccess
  695. approach:
  696. - name: behavioral approach
  697. schemaKey: ApproachType
  698. blobDateModified: '2023-04-03T12:08:47.420703-04:00'
  699. contentSize: 11613208
  700. contentUrl:
  701. - https://api.dandiarchive.org/api/assets/78e084a7-522f-44e0-a83d-6c0495ce4199/download/
  702. - https://dandiarchive-embargo.s3.amazonaws.com/000471/blobs/2d7/7a8/2d77a892-c4da-488a-9207-b03a670f8b19
  703. dateModified: '2023-04-03T12:21:21.636925-04:00'
  704. digest:
  705. dandi:dandi-etag: 77f68879d9030e489f9280997b2b187c-1
  706. dandi:sha2-256: 28499b88c1563e6c5755f55c9e0b6fcdc84c355fc357abbfbfb6d74ec3679944
  707. encodingFormat: application/x-nwb
  708. id: dandiasset:78e084a7-522f-44e0-a83d-6c0495ce4199
  709. identifier: 78e084a7-522f-44e0-a83d-6c0495ce4199
  710. measurementTechnique:
  711. - name: behavioral technique
  712. schemaKey: MeasurementTechniqueType
  713. - name: analytical technique
  714. schemaKey: MeasurementTechniqueType
  715. path: sub-f#0654/sub-f#0654_ses-20171212T194658_behavior.nwb
  716. schemaKey: Asset
  717. schemaVersion: 0.6.4
  718. variableMeasured:
  719. - schemaKey: PropertyValue
  720. value: BehavioralTimeSeries
  721. - schemaKey: PropertyValue
  722. value: ProcessingModule
  723. wasAttributedTo:
  724. - age:
  725. schemaKey: PropertyValue
  726. unitText: ISO-8601 duration
  727. value: P4D
  728. valueReference:
  729. schemaKey: PropertyValue
  730. value: dandi:BirthReference
  731. genotype: Kir / MB131B
  732. identifier: f#0654
  733. schemaKey: Participant
  734. sex:
  735. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  736. name: Female
  737. schemaKey: SexType
  738. species:
  739. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7227
  740. name: Drosophila melanogaster - Fruit fly
  741. schemaKey: SpeciesType
  742. wasGeneratedBy:
  743. - description: find neurons involved in visual learning in an appetitive conditioning
  744. paradigm
  745. name: Acquisition session
  746. schemaKey: Session
  747. startDate: '2017-12-12T19:46:58-05:00'
  748. - description: Metadata generated by DANDI cli
  749. endDate: '2023-04-03T12:21:21.636917-04:00'
  750. id: urn:uuid:1eacf069-baef-4f61-98e5-66309b5d529d
  751. name: Metadata generation
  752. schemaKey: Activity
  753. startDate: '2023-04-03T12:21:21.636184-04:00'
  754. wasAssociatedWith:
  755. - identifier: RRID:SCR_019009
  756. name: DANDI Command Line Interface
  757. schemaKey: Software
  758. url: https://github.com/dandi/dandi-cli
  759. version: 0.51.0
  760. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  761. access:
  762. - schemaKey: AccessRequirements
  763. status: dandi:OpenAccess
  764. approach:
  765. - name: behavioral approach
  766. schemaKey: ApproachType
  767. blobDateModified: '2023-04-03T12:09:20.025169-04:00'
  768. contentSize: 7636056
  769. contentUrl:
  770. - https://api.dandiarchive.org/api/assets/545931ad-6175-4f16-9b5b-b3d710d0cae0/download/
  771. - https://dandiarchive-embargo.s3.amazonaws.com/000471/blobs/037/56a/03756a26-c618-46b2-bc36-4c9f35962f73
  772. dateModified: '2023-04-03T12:21:22.829514-04:00'
  773. digest:
  774. dandi:dandi-etag: f846e83e3836205294905b671295414d-1
  775. dandi:sha2-256: 7bef2873825a04bf1f5a17b8a14678465ca832a0216a2a49963423d40d16ad08
  776. encodingFormat: application/x-nwb
  777. id: dandiasset:545931ad-6175-4f16-9b5b-b3d710d0cae0
  778. identifier: 545931ad-6175-4f16-9b5b-b3d710d0cae0
  779. measurementTechnique:
  780. - name: behavioral technique
  781. schemaKey: MeasurementTechniqueType
  782. - name: analytical technique
  783. schemaKey: MeasurementTechniqueType
  784. path: sub-f#0824/sub-f#0824_ses-20190412T200729_behavior.nwb
  785. schemaKey: Asset
  786. schemaVersion: 0.6.4
  787. variableMeasured:
  788. - schemaKey: PropertyValue
  789. value: BehavioralTimeSeries
  790. - schemaKey: PropertyValue
  791. value: ProcessingModule
  792. wasAttributedTo:
  793. - age:
  794. schemaKey: PropertyValue
  795. unitText: ISO-8601 duration
  796. value: P4D
  797. valueReference:
  798. schemaKey: PropertyValue
  799. value: dandi:BirthReference
  800. genotype: Kir / MB417B
  801. identifier: f#0824
  802. schemaKey: Participant
  803. sex:
  804. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  805. name: Female
  806. schemaKey: SexType
  807. species:
  808. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7227
  809. name: Drosophila melanogaster - Fruit fly
  810. schemaKey: SpeciesType
  811. wasGeneratedBy:
  812. - description: find neurons involved in visual learning in an appetitive conditioning
  813. paradigm
  814. name: Acquisition session
  815. schemaKey: Session
  816. startDate: '2019-04-12T20:07:29-04:00'
  817. - description: Metadata generated by DANDI cli
  818. endDate: '2023-04-03T12:21:22.829506-04:00'
  819. id: urn:uuid:955ab26e-52df-4c64-a009-51f5244baf50
  820. name: Metadata generation
  821. schemaKey: Activity
  822. startDate: '2023-04-03T12:21:22.814910-04: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.51.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: behavioral approach
  835. schemaKey: ApproachType
  836. blobDateModified: '2023-04-03T12:08:46.746865-04:00'
  837. contentSize: 11616984
  838. contentUrl:
  839. - https://api.dandiarchive.org/api/assets/f8b909d6-f57a-48ef-ab90-a682e41a87ff/download/
  840. - https://dandiarchive-embargo.s3.amazonaws.com/000471/blobs/3bf/803/3bf8039d-1b92-4ee2-8a76-a2dcf811a93a
  841. dateModified: '2023-04-03T12:21:22.434226-04:00'
  842. digest:
  843. dandi:dandi-etag: 6f1d3b0ebc9a493da0d57c7e34c37b31-1
  844. dandi:sha2-256: 14c7819b88c9ab62f00a4153da9786bdc8928fc2d3a57618bf509089ce46778d
  845. encodingFormat: application/x-nwb
  846. id: dandiasset:f8b909d6-f57a-48ef-ab90-a682e41a87ff
  847. identifier: f8b909d6-f57a-48ef-ab90-a682e41a87ff
  848. measurementTechnique:
  849. - name: behavioral technique
  850. schemaKey: MeasurementTechniqueType
  851. - name: analytical technique
  852. schemaKey: MeasurementTechniqueType
  853. path: sub-f#0653/sub-f#0653_ses-20171211T183717_behavior.nwb
  854. schemaKey: Asset
  855. schemaVersion: 0.6.4
  856. variableMeasured:
  857. - schemaKey: PropertyValue
  858. value: BehavioralTimeSeries
  859. - schemaKey: PropertyValue
  860. value: ProcessingModule
  861. wasAttributedTo:
  862. - age:
  863. schemaKey: PropertyValue
  864. unitText: ISO-8601 duration
  865. value: P4D
  866. valueReference:
  867. schemaKey: PropertyValue
  868. value: dandi:BirthReference
  869. genotype: Kir / MB417B
  870. identifier: f#0653
  871. schemaKey: Participant
  872. sex:
  873. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  874. name: Female
  875. schemaKey: SexType
  876. species:
  877. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7227
  878. name: Drosophila melanogaster - Fruit fly
  879. schemaKey: SpeciesType
  880. wasGeneratedBy:
  881. - description: find neurons involved in visual learning in an appetitive conditioning
  882. paradigm
  883. name: Acquisition session
  884. schemaKey: Session
  885. startDate: '2017-12-11T18:37:17-05:00'
  886. - description: Metadata generated by DANDI cli
  887. endDate: '2023-04-03T12:21:22.434217-04:00'
  888. id: urn:uuid:6d9643a0-024b-4b0b-8362-83c473ee6278
  889. name: Metadata generation
  890. schemaKey: Activity
  891. startDate: '2023-04-03T12:21:22.423824-04:00'
  892. wasAssociatedWith:
  893. - identifier: RRID:SCR_019009
  894. name: DANDI Command Line Interface
  895. schemaKey: Software
  896. url: https://github.com/dandi/dandi-cli
  897. version: 0.51.0
  898. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  899. access:
  900. - schemaKey: AccessRequirements
  901. status: dandi:OpenAccess
  902. approach:
  903. - name: behavioral approach
  904. schemaKey: ApproachType
  905. blobDateModified: '2023-04-03T12:09:01.643844-04:00'
  906. contentSize: 11617432
  907. contentUrl:
  908. - https://api.dandiarchive.org/api/assets/62dc685e-8a9c-4559-b5c4-cc25c8c08d6d/download/
  909. - https://dandiarchive-embargo.s3.amazonaws.com/000471/blobs/364/a55/364a5579-0ed7-4189-a8de-889019d866f5
  910. dateModified: '2023-04-03T12:21:22.721752-04:00'
  911. digest:
  912. dandi:dandi-etag: 7db1ffe245b18566a42e4f0eb1ef8f24-1
  913. dandi:sha2-256: bf663f43c4156467c3a8ee3618ca8c3cb9886ce13e0a63060ba1c5b4d2b050b0
  914. encodingFormat: application/x-nwb
  915. id: dandiasset:62dc685e-8a9c-4559-b5c4-cc25c8c08d6d
  916. identifier: 62dc685e-8a9c-4559-b5c4-cc25c8c08d6d
  917. measurementTechnique:
  918. - name: behavioral technique
  919. schemaKey: MeasurementTechniqueType
  920. - name: analytical technique
  921. schemaKey: MeasurementTechniqueType
  922. path: sub-f#0685/sub-f#0685_ses-20180210T173121_behavior.nwb
  923. schemaKey: Asset
  924. schemaVersion: 0.6.4
  925. variableMeasured:
  926. - schemaKey: PropertyValue
  927. value: BehavioralTimeSeries
  928. - schemaKey: PropertyValue
  929. value: ProcessingModule
  930. wasAttributedTo:
  931. - age:
  932. schemaKey: PropertyValue
  933. unitText: ISO-8601 duration
  934. value: P4D
  935. valueReference:
  936. schemaKey: PropertyValue
  937. value: dandi:BirthReference
  938. genotype: Kir / MB607B
  939. identifier: f#0685
  940. schemaKey: Participant
  941. sex:
  942. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  943. name: Female
  944. schemaKey: SexType
  945. species:
  946. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7227
  947. name: Drosophila melanogaster - Fruit fly
  948. schemaKey: SpeciesType
  949. wasGeneratedBy:
  950. - description: find neurons involved in visual learning in an appetitive conditioning
  951. paradigm
  952. name: Acquisition session
  953. schemaKey: Session
  954. startDate: '2018-02-10T17:31:21-05:00'
  955. - description: Metadata generated by DANDI cli
  956. endDate: '2023-04-03T12:21:22.721741-04:00'
  957. id: urn:uuid:b3346250-390d-4f3e-81c8-f2e9dc1f770e
  958. name: Metadata generation
  959. schemaKey: Activity
  960. startDate: '2023-04-03T12:21:22.716814-04:00'
  961. wasAssociatedWith:
  962. - identifier: RRID:SCR_019009
  963. name: DANDI Command Line Interface
  964. schemaKey: Software
  965. url: https://github.com/dandi/dandi-cli
  966. version: 0.51.0
  967. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  968. access:
  969. - schemaKey: AccessRequirements
  970. status: dandi:OpenAccess
  971. approach:
  972. - name: behavioral approach
  973. schemaKey: ApproachType
  974. blobDateModified: '2023-04-03T12:08:55.448883-04:00'
  975. contentSize: 11616856
  976. contentUrl:
  977. - https://api.dandiarchive.org/api/assets/f9a58a82-05bf-47a7-a3ef-62044b4d27dd/download/
  978. - https://dandiarchive-embargo.s3.amazonaws.com/000471/blobs/66c/ec3/66cec3d5-5306-43f4-b17e-91c4f1b0d7cd
  979. dateModified: '2023-04-03T12:21:23.114418-04:00'
  980. digest:
  981. dandi:dandi-etag: da22522b385c815e022656ce58d0e441-1
  982. dandi:sha2-256: afd1bd6a096c9de4de2aad6bac6570acb38f62bc9fc2fd255b2061b43de8a2f4
  983. encodingFormat: application/x-nwb
  984. id: dandiasset:f9a58a82-05bf-47a7-a3ef-62044b4d27dd
  985. identifier: f9a58a82-05bf-47a7-a3ef-62044b4d27dd
  986. measurementTechnique:
  987. - name: behavioral technique
  988. schemaKey: MeasurementTechniqueType
  989. - name: analytical technique
  990. schemaKey: MeasurementTechniqueType
  991. path: sub-f#0671/sub-f#0671_ses-20171231T173545_behavior.nwb
  992. schemaKey: Asset
  993. schemaVersion: 0.6.4
  994. variableMeasured:
  995. - schemaKey: PropertyValue
  996. value: BehavioralTimeSeries
  997. - schemaKey: PropertyValue
  998. value: ProcessingModule
  999. wasAttributedTo:
  1000. - age:
  1001. schemaKey: PropertyValue
  1002. unitText: ISO-8601 duration
  1003. value: P4D
  1004. valueReference:
  1005. schemaKey: PropertyValue
  1006. value: dandi:BirthReference
  1007. genotype: Kir / MB607B
  1008. identifier: f#0671
  1009. schemaKey: Participant
  1010. sex:
  1011. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  1012. name: Female
  1013. schemaKey: SexType
  1014. species:
  1015. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7227
  1016. name: Drosophila melanogaster - Fruit fly
  1017. schemaKey: SpeciesType
  1018. wasGeneratedBy:
  1019. - description: find neurons involved in visual learning in an appetitive conditioning
  1020. paradigm
  1021. name: Acquisition session
  1022. schemaKey: Session
  1023. startDate: '2017-12-31T17:35:45-05:00'
  1024. - description: Metadata generated by DANDI cli
  1025. endDate: '2023-04-03T12:21:23.114411-04:00'
  1026. id: urn:uuid:a21a0f1f-67ba-4aba-bf32-cabdd6ce2af8
  1027. name: Metadata generation
  1028. schemaKey: Activity
  1029. startDate: '2023-04-03T12:21:23.113659-04:00'
  1030. wasAssociatedWith:
  1031. - identifier: RRID:SCR_019009
  1032. name: DANDI Command Line Interface
  1033. schemaKey: Software
  1034. url: https://github.com/dandi/dandi-cli
  1035. version: 0.51.0
  1036. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1037. access:
  1038. - schemaKey: AccessRequirements
  1039. status: dandi:OpenAccess
  1040. approach:
  1041. - name: behavioral approach
  1042. schemaKey: ApproachType
  1043. blobDateModified: '2023-04-03T12:09:00.946088-04:00'
  1044. contentSize: 11613080
  1045. contentUrl:
  1046. - https://api.dandiarchive.org/api/assets/82749845-4046-47ae-9f2f-75fc8f813aa1/download/
  1047. - https://dandiarchive-embargo.s3.amazonaws.com/000471/blobs/e4a/a89/e4aa8916-c233-4cc2-8ca7-24c7585b083d
  1048. dateModified: '2023-04-03T12:21:26.823511-04:00'
  1049. digest:
  1050. dandi:dandi-etag: 25cec329cd1d0b4e7df8bacc62e5584f-1
  1051. dandi:sha2-256: e3e3cc842b38913ba9e4b1fa8db395ed01b549fcf7103b7fd2bf85fefc824dd3
  1052. encodingFormat: application/x-nwb
  1053. id: dandiasset:82749845-4046-47ae-9f2f-75fc8f813aa1
  1054. identifier: 82749845-4046-47ae-9f2f-75fc8f813aa1
  1055. measurementTechnique:
  1056. - name: behavioral technique
  1057. schemaKey: MeasurementTechniqueType
  1058. - name: analytical technique
  1059. schemaKey: MeasurementTechniqueType
  1060. path: sub-f#0682/sub-f#0682_ses-20180210T013458_behavior.nwb
  1061. schemaKey: Asset
  1062. schemaVersion: 0.6.4
  1063. variableMeasured:
  1064. - schemaKey: PropertyValue
  1065. value: BehavioralTimeSeries
  1066. - schemaKey: PropertyValue
  1067. value: ProcessingModule
  1068. wasAttributedTo:
  1069. - age:
  1070. schemaKey: PropertyValue
  1071. unitText: ISO-8601 duration
  1072. value: P4D
  1073. valueReference:
  1074. schemaKey: PropertyValue
  1075. value: dandi:BirthReference
  1076. genotype: Kir / MB008B
  1077. identifier: f#0682
  1078. schemaKey: Participant
  1079. sex:
  1080. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  1081. name: Female
  1082. schemaKey: SexType
  1083. species:
  1084. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7227
  1085. name: Drosophila melanogaster - Fruit fly
  1086. schemaKey: SpeciesType
  1087. wasGeneratedBy:
  1088. - description: find neurons involved in visual learning in an appetitive conditioning
  1089. paradigm
  1090. name: Acquisition session
  1091. schemaKey: Session
  1092. startDate: '2018-02-10T01:34:58-05:00'
  1093. - description: Metadata generated by DANDI cli
  1094. endDate: '2023-04-03T12:21:26.823501-04:00'
  1095. id: urn:uuid:9a417dcc-06a7-48a5-9d26-22699630c784
  1096. name: Metadata generation
  1097. schemaKey: Activity
  1098. startDate: '2023-04-03T12:21:26.813251-04: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.51.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: behavioral approach
  1111. schemaKey: ApproachType
  1112. blobDateModified: '2023-04-03T12:08:45.383797-04:00'
  1113. contentSize: 11613080
  1114. contentUrl:
  1115. - https://api.dandiarchive.org/api/assets/7c90c0cd-88fa-4a2c-929f-5db9c46907dc/download/
  1116. - https://dandiarchive-embargo.s3.amazonaws.com/000471/blobs/fba/758/fba758be-3ec7-46d7-8d6e-7b30bc2b2939
  1117. dateModified: '2023-04-03T12:21:27.079759-04:00'
  1118. digest:
  1119. dandi:dandi-etag: 0dd21838393abe9b60cc2ea066933073-1
  1120. dandi:sha2-256: 6c8df247ea6c5cfc19d542f77955de3dafebcfce74e36bb4828e31725570609b
  1121. encodingFormat: application/x-nwb
  1122. id: dandiasset:7c90c0cd-88fa-4a2c-929f-5db9c46907dc
  1123. identifier: 7c90c0cd-88fa-4a2c-929f-5db9c46907dc
  1124. measurementTechnique:
  1125. - name: behavioral technique
  1126. schemaKey: MeasurementTechniqueType
  1127. - name: analytical technique
  1128. schemaKey: MeasurementTechniqueType
  1129. path: sub-f#0647/sub-f#0647_ses-20171122T181726_behavior.nwb
  1130. schemaKey: Asset
  1131. schemaVersion: 0.6.4
  1132. variableMeasured:
  1133. - schemaKey: PropertyValue
  1134. value: BehavioralTimeSeries
  1135. - schemaKey: PropertyValue
  1136. value: ProcessingModule
  1137. wasAttributedTo:
  1138. - age:
  1139. schemaKey: PropertyValue
  1140. unitText: ISO-8601 duration
  1141. value: P4D
  1142. valueReference:
  1143. schemaKey: PropertyValue
  1144. value: dandi:BirthReference
  1145. genotype: Kir / MB417B
  1146. identifier: f#0647
  1147. schemaKey: Participant
  1148. sex:
  1149. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  1150. name: Female
  1151. schemaKey: SexType
  1152. species:
  1153. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7227
  1154. name: Drosophila melanogaster - Fruit fly
  1155. schemaKey: SpeciesType
  1156. wasGeneratedBy:
  1157. - description: find neurons involved in visual learning in an appetitive conditioning
  1158. paradigm
  1159. name: Acquisition session
  1160. schemaKey: Session
  1161. startDate: '2017-11-22T18:17:26-05:00'
  1162. - description: Metadata generated by DANDI cli
  1163. endDate: '2023-04-03T12:21:27.079751-04:00'
  1164. id: urn:uuid:f8e0167a-f8a4-438f-a6d9-6c01c6906995
  1165. name: Metadata generation
  1166. schemaKey: Activity
  1167. startDate: '2023-04-03T12:21:27.079069-04:00'
  1168. wasAssociatedWith:
  1169. - identifier: RRID:SCR_019009
  1170. name: DANDI Command Line Interface
  1171. schemaKey: Software
  1172. url: https://github.com/dandi/dandi-cli
  1173. version: 0.51.0
  1174. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1175. access:
  1176. - schemaKey: AccessRequirements
  1177. status: dandi:OpenAccess
  1178. approach:
  1179. - name: behavioral approach
  1180. schemaKey: ApproachType
  1181. blobDateModified: '2023-04-03T12:08:54.766007-04:00'
  1182. contentSize: 11613208
  1183. contentUrl:
  1184. - https://api.dandiarchive.org/api/assets/6a34fe10-6edd-4dfd-986f-38848fb99b80/download/
  1185. - https://dandiarchive-embargo.s3.amazonaws.com/000471/blobs/f45/87d/f4587dee-9bca-4ac6-aee7-928b1a21d52c
  1186. dateModified: '2023-04-03T12:21:28.894616-04:00'
  1187. digest:
  1188. dandi:dandi-etag: 8a607fc11fb6991f1c1cdf0422c42c64-1
  1189. dandi:sha2-256: 93ea994b421ae734cc9212168954bb40d8c3e4ba3e020cd53aa4ab94949eea87
  1190. encodingFormat: application/x-nwb
  1191. id: dandiasset:6a34fe10-6edd-4dfd-986f-38848fb99b80
  1192. identifier: 6a34fe10-6edd-4dfd-986f-38848fb99b80
  1193. measurementTechnique:
  1194. - name: behavioral technique
  1195. schemaKey: MeasurementTechniqueType
  1196. - name: analytical technique
  1197. schemaKey: MeasurementTechniqueType
  1198. path: sub-f#0670/sub-f#0670_ses-20171231T172435_behavior.nwb
  1199. schemaKey: Asset
  1200. schemaVersion: 0.6.4
  1201. variableMeasured:
  1202. - schemaKey: PropertyValue
  1203. value: BehavioralTimeSeries
  1204. - schemaKey: PropertyValue
  1205. value: ProcessingModule
  1206. wasAttributedTo:
  1207. - age:
  1208. schemaKey: PropertyValue
  1209. unitText: ISO-8601 duration
  1210. value: P4D
  1211. valueReference:
  1212. schemaKey: PropertyValue
  1213. value: dandi:BirthReference
  1214. genotype: Kir / MB131B
  1215. identifier: f#0670
  1216. schemaKey: Participant
  1217. sex:
  1218. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  1219. name: Female
  1220. schemaKey: SexType
  1221. species:
  1222. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7227
  1223. name: Drosophila melanogaster - Fruit fly
  1224. schemaKey: SpeciesType
  1225. wasGeneratedBy:
  1226. - description: find neurons involved in visual learning in an appetitive conditioning
  1227. paradigm
  1228. name: Acquisition session
  1229. schemaKey: Session
  1230. startDate: '2017-12-31T17:24:35-05:00'
  1231. - description: Metadata generated by DANDI cli
  1232. endDate: '2023-04-03T12:21:28.894608-04:00'
  1233. id: urn:uuid:092e77fa-3fe4-49a6-9220-62407da54e9b
  1234. name: Metadata generation
  1235. schemaKey: Activity
  1236. startDate: '2023-04-03T12:21:28.878508-04:00'
  1237. wasAssociatedWith:
  1238. - identifier: RRID:SCR_019009
  1239. name: DANDI Command Line Interface
  1240. schemaKey: Software
  1241. url: https://github.com/dandi/dandi-cli
  1242. version: 0.51.0
  1243. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1244. access:
  1245. - schemaKey: AccessRequirements
  1246. status: dandi:OpenAccess
  1247. approach:
  1248. - name: behavioral approach
  1249. schemaKey: ApproachType
  1250. blobDateModified: '2023-04-03T12:08:57.521830-04:00'
  1251. contentSize: 11613016
  1252. contentUrl:
  1253. - https://api.dandiarchive.org/api/assets/8f2b797a-e50a-4fab-ae59-8f1526705896/download/
  1254. - https://dandiarchive-embargo.s3.amazonaws.com/000471/blobs/708/0ab/7080aba2-388a-4e2c-9cc5-83350f679fbe
  1255. dateModified: '2023-04-03T12:21:25.590585-04:00'
  1256. digest:
  1257. dandi:dandi-etag: 07bfea89128ea1c320b32909a61e05f2-1
  1258. dandi:sha2-256: b405a09ebee1bbd8099721c13ef6e5f459a3393c740700e92cc3b4160007ad1d
  1259. encodingFormat: application/x-nwb
  1260. id: dandiasset:8f2b797a-e50a-4fab-ae59-8f1526705896
  1261. identifier: 8f2b797a-e50a-4fab-ae59-8f1526705896
  1262. measurementTechnique:
  1263. - name: behavioral technique
  1264. schemaKey: MeasurementTechniqueType
  1265. - name: analytical technique
  1266. schemaKey: MeasurementTechniqueType
  1267. path: sub-f#0676/sub-f#0676_ses-20180208T155315_behavior.nwb
  1268. schemaKey: Asset
  1269. schemaVersion: 0.6.4
  1270. variableMeasured:
  1271. - schemaKey: PropertyValue
  1272. value: BehavioralTimeSeries
  1273. - schemaKey: PropertyValue
  1274. value: ProcessingModule
  1275. wasAttributedTo:
  1276. - age:
  1277. schemaKey: PropertyValue
  1278. unitText: ISO-8601 duration
  1279. value: P4D
  1280. valueReference:
  1281. schemaKey: PropertyValue
  1282. value: dandi:BirthReference
  1283. genotype: Kir / MB607B
  1284. identifier: f#0676
  1285. schemaKey: Participant
  1286. sex:
  1287. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  1288. name: Female
  1289. schemaKey: SexType
  1290. species:
  1291. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7227
  1292. name: Drosophila melanogaster - Fruit fly
  1293. schemaKey: SpeciesType
  1294. wasGeneratedBy:
  1295. - description: find neurons involved in visual learning in an appetitive conditioning
  1296. paradigm
  1297. name: Acquisition session
  1298. schemaKey: Session
  1299. startDate: '2018-02-08T15:53:15-05:00'
  1300. - description: Metadata generated by DANDI cli
  1301. endDate: '2023-04-03T12:21:25.590577-04:00'
  1302. id: urn:uuid:75e02e2d-5b5f-4eb7-80fd-264278c6d9eb
  1303. name: Metadata generation
  1304. schemaKey: Activity
  1305. startDate: '2023-04-03T12:21:25.589825-04:00'
  1306. wasAssociatedWith:
  1307. - identifier: RRID:SCR_019009
  1308. name: DANDI Command Line Interface
  1309. schemaKey: Software
  1310. url: https://github.com/dandi/dandi-cli
  1311. version: 0.51.0
  1312. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1313. access:
  1314. - schemaKey: AccessRequirements
  1315. status: dandi:OpenAccess
  1316. approach:
  1317. - name: behavioral approach
  1318. schemaKey: ApproachType
  1319. blobDateModified: '2023-04-03T12:09:14.199797-04:00'
  1320. contentSize: 7636632
  1321. contentUrl:
  1322. - https://api.dandiarchive.org/api/assets/7d9314b0-6e79-4e5d-8e0f-ac9a7c071cf9/download/
  1323. - https://dandiarchive-embargo.s3.amazonaws.com/000471/blobs/4e5/3cf/4e53cfb9-2f35-4d35-a772-a3dd4af6cc45
  1324. dateModified: '2023-04-03T12:21:30.663202-04:00'
  1325. digest:
  1326. dandi:dandi-etag: e3e8c02deac5015edc05531bc12dbf7b-1
  1327. dandi:sha2-256: d337fdece73ef12e363c39e5e6adb010715e56df3b4bc32a92d62c009561d757
  1328. encodingFormat: application/x-nwb
  1329. id: dandiasset:7d9314b0-6e79-4e5d-8e0f-ac9a7c071cf9
  1330. identifier: 7d9314b0-6e79-4e5d-8e0f-ac9a7c071cf9
  1331. measurementTechnique:
  1332. - name: behavioral technique
  1333. schemaKey: MeasurementTechniqueType
  1334. - name: analytical technique
  1335. schemaKey: MeasurementTechniqueType
  1336. path: sub-f#0793/sub-f#0793_ses-20190119T175042_behavior.nwb
  1337. schemaKey: Asset
  1338. schemaVersion: 0.6.4
  1339. variableMeasured:
  1340. - schemaKey: PropertyValue
  1341. value: BehavioralTimeSeries
  1342. - schemaKey: PropertyValue
  1343. value: ProcessingModule
  1344. wasAttributedTo:
  1345. - age:
  1346. schemaKey: PropertyValue
  1347. unitText: ISO-8601 duration
  1348. value: P4D
  1349. valueReference:
  1350. schemaKey: PropertyValue
  1351. value: dandi:BirthReference
  1352. genotype: DL / MB607B
  1353. identifier: f#0793
  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_7227
  1361. name: Drosophila melanogaster - Fruit fly
  1362. schemaKey: SpeciesType
  1363. wasGeneratedBy:
  1364. - description: find neurons involved in visual learning in an appetitive conditioning
  1365. paradigm
  1366. name: Acquisition session
  1367. schemaKey: Session
  1368. startDate: '2019-01-19T17:50:42-05:00'
  1369. - description: Metadata generated by DANDI cli
  1370. endDate: '2023-04-03T12:21:30.663194-04:00'
  1371. id: urn:uuid:2ec4adc1-05c6-4144-8db7-d8d6a73e9440
  1372. name: Metadata generation
  1373. schemaKey: Activity
  1374. startDate: '2023-04-03T12:21:30.662462-04:00'
  1375. wasAssociatedWith:
  1376. - identifier: RRID:SCR_019009
  1377. name: DANDI Command Line Interface
  1378. schemaKey: Software
  1379. url: https://github.com/dandi/dandi-cli
  1380. version: 0.51.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: behavioral approach
  1387. schemaKey: ApproachType
  1388. blobDateModified: '2023-04-03T12:08:58.868754-04:00'
  1389. contentSize: 11617240
  1390. contentUrl:
  1391. - https://api.dandiarchive.org/api/assets/57be4367-6e46-4af7-82b6-aa1773b88fae/download/
  1392. - https://dandiarchive-embargo.s3.amazonaws.com/000471/blobs/d12/8b9/d128b95c-7b8e-4567-820d-013d4f89598b
  1393. dateModified: '2023-04-03T12:21:27.518152-04:00'
  1394. digest:
  1395. dandi:dandi-etag: bff372f8033a4f41da6cc200ed40b952-1
  1396. dandi:sha2-256: e4bc95ae86ad69bc3a94a45047d04d614fb4472a2b9345a0b60af1beb2c96bb0
  1397. encodingFormat: application/x-nwb
  1398. id: dandiasset:57be4367-6e46-4af7-82b6-aa1773b88fae
  1399. identifier: 57be4367-6e46-4af7-82b6-aa1773b88fae
  1400. measurementTechnique:
  1401. - name: behavioral technique
  1402. schemaKey: MeasurementTechniqueType
  1403. - name: analytical technique
  1404. schemaKey: MeasurementTechniqueType
  1405. path: sub-f#0679/sub-f#0679_ses-20180208T221538_behavior.nwb
  1406. schemaKey: Asset
  1407. schemaVersion: 0.6.4
  1408. variableMeasured:
  1409. - schemaKey: PropertyValue
  1410. value: BehavioralTimeSeries
  1411. - schemaKey: PropertyValue
  1412. value: ProcessingModule
  1413. wasAttributedTo:
  1414. - age:
  1415. schemaKey: PropertyValue
  1416. unitText: ISO-8601 duration
  1417. value: P4D
  1418. valueReference:
  1419. schemaKey: PropertyValue
  1420. value: dandi:BirthReference
  1421. genotype: Kir / MB607B
  1422. identifier: f#0679
  1423. schemaKey: Participant
  1424. sex:
  1425. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  1426. name: Female
  1427. schemaKey: SexType
  1428. species:
  1429. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7227
  1430. name: Drosophila melanogaster - Fruit fly
  1431. schemaKey: SpeciesType
  1432. wasGeneratedBy:
  1433. - description: find neurons involved in visual learning in an appetitive conditioning
  1434. paradigm
  1435. name: Acquisition session
  1436. schemaKey: Session
  1437. startDate: '2018-02-08T22:15:38-05:00'
  1438. - description: Metadata generated by DANDI cli
  1439. endDate: '2023-04-03T12:21:27.518144-04:00'
  1440. id: urn:uuid:be37b71f-3720-4ed9-901f-a47ea24e2d23
  1441. name: Metadata generation
  1442. schemaKey: Activity
  1443. startDate: '2023-04-03T12:21:27.517458-04:00'
  1444. wasAssociatedWith:
  1445. - identifier: RRID:SCR_019009
  1446. name: DANDI Command Line Interface
  1447. schemaKey: Software
  1448. url: https://github.com/dandi/dandi-cli
  1449. version: 0.51.0
  1450. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1451. access:
  1452. - schemaKey: AccessRequirements
  1453. status: dandi:OpenAccess
  1454. approach:
  1455. - name: behavioral approach
  1456. schemaKey: ApproachType
  1457. blobDateModified: '2023-04-03T12:08:58.189684-04:00'
  1458. contentSize: 11613144
  1459. contentUrl:
  1460. - https://api.dandiarchive.org/api/assets/0ba3387b-6cbe-48ec-a131-ef1c66a6f180/download/
  1461. - https://dandiarchive-embargo.s3.amazonaws.com/000471/blobs/faa/9cd/faa9cde4-6abd-4ac1-abc7-1d7b1424f841
  1462. dateModified: '2023-04-03T12:21:27.436293-04:00'
  1463. digest:
  1464. dandi:dandi-etag: 651d1df67fb2eb2a4aa0dea443d2d863-1
  1465. dandi:sha2-256: 987e233a34e7f4ea33ff45f18924cc49cb6ebaff680c1fbbb8910e4119120a00
  1466. encodingFormat: application/x-nwb
  1467. id: dandiasset:0ba3387b-6cbe-48ec-a131-ef1c66a6f180
  1468. identifier: 0ba3387b-6cbe-48ec-a131-ef1c66a6f180
  1469. measurementTechnique:
  1470. - name: behavioral technique
  1471. schemaKey: MeasurementTechniqueType
  1472. - name: analytical technique
  1473. schemaKey: MeasurementTechniqueType
  1474. path: sub-f#0678/sub-f#0678_ses-20180208T220650_behavior.nwb
  1475. schemaKey: Asset
  1476. schemaVersion: 0.6.4
  1477. variableMeasured:
  1478. - schemaKey: PropertyValue
  1479. value: BehavioralTimeSeries
  1480. - schemaKey: PropertyValue
  1481. value: ProcessingModule
  1482. wasAttributedTo:
  1483. - age:
  1484. schemaKey: PropertyValue
  1485. unitText: ISO-8601 duration
  1486. value: P4D
  1487. valueReference:
  1488. schemaKey: PropertyValue
  1489. value: dandi:BirthReference
  1490. genotype: Kir / MB131B
  1491. identifier: f#0678
  1492. schemaKey: Participant
  1493. sex:
  1494. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  1495. name: Female
  1496. schemaKey: SexType
  1497. species:
  1498. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7227
  1499. name: Drosophila melanogaster - Fruit fly
  1500. schemaKey: SpeciesType
  1501. wasGeneratedBy:
  1502. - description: find neurons involved in visual learning in an appetitive conditioning
  1503. paradigm
  1504. name: Acquisition session
  1505. schemaKey: Session
  1506. startDate: '2018-02-08T22:06:50-05:00'
  1507. - description: Metadata generated by DANDI cli
  1508. endDate: '2023-04-03T12:21:27.436283-04:00'
  1509. id: urn:uuid:df0127ed-fa3d-480a-8b62-05aad42ca8ab
  1510. name: Metadata generation
  1511. schemaKey: Activity
  1512. startDate: '2023-04-03T12:21:27.435631-04:00'
  1513. wasAssociatedWith:
  1514. - identifier: RRID:SCR_019009
  1515. name: DANDI Command Line Interface
  1516. schemaKey: Software
  1517. url: https://github.com/dandi/dandi-cli
  1518. version: 0.51.0
  1519. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1520. access:
  1521. - schemaKey: AccessRequirements
  1522. status: dandi:OpenAccess
  1523. approach:
  1524. - name: behavioral approach
  1525. schemaKey: ApproachType
  1526. blobDateModified: '2023-04-03T12:09:19.374495-04:00'
  1527. contentSize: 7636312
  1528. contentUrl:
  1529. - https://api.dandiarchive.org/api/assets/d23009e9-503e-44bc-9828-89d4db4c3533/download/
  1530. - https://dandiarchive-embargo.s3.amazonaws.com/000471/blobs/e59/a16/e59a1640-9bb4-4ece-8e01-76db30ee1373
  1531. dateModified: '2023-04-03T12:21:28.626903-04:00'
  1532. digest:
  1533. dandi:dandi-etag: df6e158503b7771e66db4c5dc88e9b72-1
  1534. dandi:sha2-256: 406b5643aea61fe02817d0bee851a208241c098c2e61385b41f876fd2c7dc91f
  1535. encodingFormat: application/x-nwb
  1536. id: dandiasset:d23009e9-503e-44bc-9828-89d4db4c3533
  1537. identifier: d23009e9-503e-44bc-9828-89d4db4c3533
  1538. measurementTechnique:
  1539. - name: behavioral technique
  1540. schemaKey: MeasurementTechniqueType
  1541. - name: analytical technique
  1542. schemaKey: MeasurementTechniqueType
  1543. path: sub-f#0822/sub-f#0822_ses-20190410T205355_behavior.nwb
  1544. schemaKey: Asset
  1545. schemaVersion: 0.6.4
  1546. variableMeasured:
  1547. - schemaKey: PropertyValue
  1548. value: BehavioralTimeSeries
  1549. - schemaKey: PropertyValue
  1550. value: ProcessingModule
  1551. wasAttributedTo:
  1552. - age:
  1553. schemaKey: PropertyValue
  1554. unitText: ISO-8601 duration
  1555. value: P4D
  1556. valueReference:
  1557. schemaKey: PropertyValue
  1558. value: dandi:BirthReference
  1559. genotype: Kir / MB607B
  1560. identifier: f#0822
  1561. schemaKey: Participant
  1562. sex:
  1563. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  1564. name: Female
  1565. schemaKey: SexType
  1566. species:
  1567. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7227
  1568. name: Drosophila melanogaster - Fruit fly
  1569. schemaKey: SpeciesType
  1570. wasGeneratedBy:
  1571. - description: find neurons involved in visual learning in an appetitive conditioning
  1572. paradigm
  1573. name: Acquisition session
  1574. schemaKey: Session
  1575. startDate: '2019-04-10T20:53:55-04:00'
  1576. - description: Metadata generated by DANDI cli
  1577. endDate: '2023-04-03T12:21:28.626896-04:00'
  1578. id: urn:uuid:47e2084e-48d7-4ff8-85da-0bf263c68374
  1579. name: Metadata generation
  1580. schemaKey: Activity
  1581. startDate: '2023-04-03T12:21:28.626242-04:00'
  1582. wasAssociatedWith:
  1583. - identifier: RRID:SCR_019009
  1584. name: DANDI Command Line Interface
  1585. schemaKey: Software
  1586. url: https://github.com/dandi/dandi-cli
  1587. version: 0.51.0
  1588. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1589. access:
  1590. - schemaKey: AccessRequirements
  1591. status: dandi:OpenAccess
  1592. approach:
  1593. - name: behavioral approach
  1594. schemaKey: ApproachType
  1595. blobDateModified: '2023-04-03T12:09:05.619524-04:00'
  1596. contentSize: 11617048
  1597. contentUrl:
  1598. - https://api.dandiarchive.org/api/assets/908e7484-6a4c-4a93-87e3-2c99e7f6532c/download/
  1599. - https://dandiarchive-embargo.s3.amazonaws.com/000471/blobs/3db/bac/3dbbace8-d064-4404-98b4-d878d9504dda
  1600. dateModified: '2023-04-03T12:21:30.721752-04:00'
  1601. digest:
  1602. dandi:dandi-etag: 0ce4b319a4b008928e0d26b8b785f555-1
  1603. dandi:sha2-256: f7503bb009ee05a2734023d68fc238c0459b147930e1e1dba7a26b2acc9b9a0d
  1604. encodingFormat: application/x-nwb
  1605. id: dandiasset:908e7484-6a4c-4a93-87e3-2c99e7f6532c
  1606. identifier: 908e7484-6a4c-4a93-87e3-2c99e7f6532c
  1607. measurementTechnique:
  1608. - name: behavioral technique
  1609. schemaKey: MeasurementTechniqueType
  1610. - name: analytical technique
  1611. schemaKey: MeasurementTechniqueType
  1612. path: sub-f#0734/sub-f#0734_ses-20180527T215056_behavior.nwb
  1613. schemaKey: Asset
  1614. schemaVersion: 0.6.4
  1615. variableMeasured:
  1616. - schemaKey: PropertyValue
  1617. value: BehavioralTimeSeries
  1618. - schemaKey: PropertyValue
  1619. value: ProcessingModule
  1620. wasAttributedTo:
  1621. - age:
  1622. schemaKey: PropertyValue
  1623. unitText: ISO-8601 duration
  1624. value: P4D
  1625. valueReference:
  1626. schemaKey: PropertyValue
  1627. value: dandi:BirthReference
  1628. genotype: DL / MB607B
  1629. identifier: f#0734
  1630. schemaKey: Participant
  1631. sex:
  1632. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  1633. name: Female
  1634. schemaKey: SexType
  1635. species:
  1636. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7227
  1637. name: Drosophila melanogaster - Fruit fly
  1638. schemaKey: SpeciesType
  1639. wasGeneratedBy:
  1640. - description: find neurons involved in visual learning in an appetitive conditioning
  1641. paradigm
  1642. name: Acquisition session
  1643. schemaKey: Session
  1644. startDate: '2018-05-27T21:50:56-04:00'
  1645. - description: Metadata generated by DANDI cli
  1646. endDate: '2023-04-03T12:21:30.721746-04:00'
  1647. id: urn:uuid:9545f0ff-8a40-401d-8bcd-5003a3f5a429
  1648. name: Metadata generation
  1649. schemaKey: Activity
  1650. startDate: '2023-04-03T12:21:30.709826-04:00'
  1651. wasAssociatedWith:
  1652. - identifier: RRID:SCR_019009
  1653. name: DANDI Command Line Interface
  1654. schemaKey: Software
  1655. url: https://github.com/dandi/dandi-cli
  1656. version: 0.51.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: behavioral approach
  1663. schemaKey: ApproachType
  1664. blobDateModified: '2023-04-03T12:09:08.936840-04:00'
  1665. contentSize: 7632728
  1666. contentUrl:
  1667. - https://api.dandiarchive.org/api/assets/444b267d-89c9-43c6-bc2a-da45c7eb7cda/download/
  1668. - https://dandiarchive-embargo.s3.amazonaws.com/000471/blobs/537/853/53785339-359c-49a9-973b-3f0474a2da75
  1669. dateModified: '2023-04-03T12:21:34.907539-04:00'
  1670. digest:
  1671. dandi:dandi-etag: 904d7371ed59a1783f2467092909f26c-1
  1672. dandi:sha2-256: aea1342864abb4c7e5807b0e2525b6bd0c366644a916ec397f2e1027429cde55
  1673. encodingFormat: application/x-nwb
  1674. id: dandiasset:444b267d-89c9-43c6-bc2a-da45c7eb7cda
  1675. identifier: 444b267d-89c9-43c6-bc2a-da45c7eb7cda
  1676. measurementTechnique:
  1677. - name: behavioral technique
  1678. schemaKey: MeasurementTechniqueType
  1679. - name: analytical technique
  1680. schemaKey: MeasurementTechniqueType
  1681. path: sub-f#0747/sub-f#0747_ses-20180720T202656_behavior.nwb
  1682. schemaKey: Asset
  1683. schemaVersion: 0.6.4
  1684. variableMeasured:
  1685. - schemaKey: PropertyValue
  1686. value: BehavioralTimeSeries
  1687. - schemaKey: PropertyValue
  1688. value: ProcessingModule
  1689. wasAttributedTo:
  1690. - age:
  1691. schemaKey: PropertyValue
  1692. unitText: ISO-8601 duration
  1693. value: P4D
  1694. valueReference:
  1695. schemaKey: PropertyValue
  1696. value: dandi:BirthReference
  1697. genotype: Kir / MB607B
  1698. identifier: f#0747
  1699. schemaKey: Participant
  1700. sex:
  1701. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  1702. name: Female
  1703. schemaKey: SexType
  1704. species:
  1705. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7227
  1706. name: Drosophila melanogaster - Fruit fly
  1707. schemaKey: SpeciesType
  1708. wasGeneratedBy:
  1709. - description: find neurons involved in visual learning in an appetitive conditioning
  1710. paradigm
  1711. name: Acquisition session
  1712. schemaKey: Session
  1713. startDate: '2018-07-20T20:26:56-04:00'
  1714. - description: Metadata generated by DANDI cli
  1715. endDate: '2023-04-03T12:21:34.907531-04:00'
  1716. id: urn:uuid:a5a89cb0-be2a-4b67-af7b-d9fdec085e96
  1717. name: Metadata generation
  1718. schemaKey: Activity
  1719. startDate: '2023-04-03T12:21:34.906827-04:00'
  1720. wasAssociatedWith:
  1721. - identifier: RRID:SCR_019009
  1722. name: DANDI Command Line Interface
  1723. schemaKey: Software
  1724. url: https://github.com/dandi/dandi-cli
  1725. version: 0.51.0
  1726. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1727. access:
  1728. - schemaKey: AccessRequirements
  1729. status: dandi:OpenAccess
  1730. approach:
  1731. - name: behavioral approach
  1732. schemaKey: ApproachType
  1733. blobDateModified: '2023-04-03T12:09:13.519936-04:00'
  1734. contentSize: 7632728
  1735. contentUrl:
  1736. - https://api.dandiarchive.org/api/assets/aa39af9a-4520-4f84-84f1-a3d798de06a0/download/
  1737. - https://dandiarchive-embargo.s3.amazonaws.com/000471/blobs/892/435/89243578-18f0-42e7-a1b5-718b156201ca
  1738. dateModified: '2023-04-03T12:21:32.727389-04:00'
  1739. digest:
  1740. dandi:dandi-etag: 6da489dcb4833b6635f26feb773cf8de-1
  1741. dandi:sha2-256: ab03005a809cd6fa39193f3a394908b1372c042778785ed44b77fabeb21da5ec
  1742. encodingFormat: application/x-nwb
  1743. id: dandiasset:aa39af9a-4520-4f84-84f1-a3d798de06a0
  1744. identifier: aa39af9a-4520-4f84-84f1-a3d798de06a0
  1745. measurementTechnique:
  1746. - name: behavioral technique
  1747. schemaKey: MeasurementTechniqueType
  1748. - name: analytical technique
  1749. schemaKey: MeasurementTechniqueType
  1750. path: sub-f#0792/sub-f#0792_ses-20190119T174730_behavior.nwb
  1751. schemaKey: Asset
  1752. schemaVersion: 0.6.4
  1753. variableMeasured:
  1754. - schemaKey: PropertyValue
  1755. value: BehavioralTimeSeries
  1756. - schemaKey: PropertyValue
  1757. value: ProcessingModule
  1758. wasAttributedTo:
  1759. - age:
  1760. schemaKey: PropertyValue
  1761. unitText: ISO-8601 duration
  1762. value: P4D
  1763. valueReference:
  1764. schemaKey: PropertyValue
  1765. value: dandi:BirthReference
  1766. genotype: Kir / MB417B
  1767. identifier: f#0792
  1768. schemaKey: Participant
  1769. sex:
  1770. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  1771. name: Female
  1772. schemaKey: SexType
  1773. species:
  1774. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7227
  1775. name: Drosophila melanogaster - Fruit fly
  1776. schemaKey: SpeciesType
  1777. wasGeneratedBy:
  1778. - description: find neurons involved in visual learning in an appetitive conditioning
  1779. paradigm
  1780. name: Acquisition session
  1781. schemaKey: Session
  1782. startDate: '2019-01-19T17:47:30-05:00'
  1783. - description: Metadata generated by DANDI cli
  1784. endDate: '2023-04-03T12:21:32.727380-04:00'
  1785. id: urn:uuid:ad70afad-ba72-47a7-8abd-9cafc9c8b3d1
  1786. name: Metadata generation
  1787. schemaKey: Activity
  1788. startDate: '2023-04-03T12:21:32.723607-04:00'
  1789. wasAssociatedWith:
  1790. - identifier: RRID:SCR_019009
  1791. name: DANDI Command Line Interface
  1792. schemaKey: Software
  1793. url: https://github.com/dandi/dandi-cli
  1794. version: 0.51.0
  1795. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1796. access:
  1797. - schemaKey: AccessRequirements
  1798. status: dandi:OpenAccess
  1799. approach:
  1800. - name: behavioral approach
  1801. schemaKey: ApproachType
  1802. blobDateModified: '2023-04-03T12:09:10.258722-04:00'
  1803. contentSize: 7632728
  1804. contentUrl:
  1805. - https://api.dandiarchive.org/api/assets/da7dc2dc-e278-4875-86af-0a1821d90ca3/download/
  1806. - https://dandiarchive-embargo.s3.amazonaws.com/000471/blobs/89f/875/89f87524-51e5-48b8-8ef5-eea79a173d05
  1807. dateModified: '2023-04-03T12:21:32.805557-04:00'
  1808. digest:
  1809. dandi:dandi-etag: f97b4948c6920ee418ef2a327e5ab7d2-1
  1810. dandi:sha2-256: d1fa2c47acfeedd4fc0e95b521cdccd64456b9282454c14ff6a10af38c4e8fec
  1811. encodingFormat: application/x-nwb
  1812. id: dandiasset:da7dc2dc-e278-4875-86af-0a1821d90ca3
  1813. identifier: da7dc2dc-e278-4875-86af-0a1821d90ca3
  1814. measurementTechnique:
  1815. - name: behavioral technique
  1816. schemaKey: MeasurementTechniqueType
  1817. - name: analytical technique
  1818. schemaKey: MeasurementTechniqueType
  1819. path: sub-f#0759/sub-f#0759_ses-20180808T194314_behavior.nwb
  1820. schemaKey: Asset
  1821. schemaVersion: 0.6.4
  1822. variableMeasured:
  1823. - schemaKey: PropertyValue
  1824. value: BehavioralTimeSeries
  1825. - schemaKey: PropertyValue
  1826. value: ProcessingModule
  1827. wasAttributedTo:
  1828. - age:
  1829. schemaKey: PropertyValue
  1830. unitText: ISO-8601 duration
  1831. value: P4D
  1832. valueReference:
  1833. schemaKey: PropertyValue
  1834. value: dandi:BirthReference
  1835. genotype: DL / MB607B
  1836. identifier: f#0759
  1837. schemaKey: Participant
  1838. sex:
  1839. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  1840. name: Female
  1841. schemaKey: SexType
  1842. species:
  1843. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7227
  1844. name: Drosophila melanogaster - Fruit fly
  1845. schemaKey: SpeciesType
  1846. wasGeneratedBy:
  1847. - description: find neurons involved in visual learning in an appetitive conditioning
  1848. paradigm
  1849. name: Acquisition session
  1850. schemaKey: Session
  1851. startDate: '2018-08-08T19:43:14-04:00'
  1852. - description: Metadata generated by DANDI cli
  1853. endDate: '2023-04-03T12:21:32.805550-04:00'
  1854. id: urn:uuid:129f9212-6854-4b56-b65d-b81251dd648e
  1855. name: Metadata generation
  1856. schemaKey: Activity
  1857. startDate: '2023-04-03T12:21:32.802503-04:00'
  1858. wasAssociatedWith:
  1859. - identifier: RRID:SCR_019009
  1860. name: DANDI Command Line Interface
  1861. schemaKey: Software
  1862. url: https://github.com/dandi/dandi-cli
  1863. version: 0.51.0
  1864. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1865. access:
  1866. - schemaKey: AccessRequirements
  1867. status: dandi:OpenAccess
  1868. approach:
  1869. - name: behavioral approach
  1870. schemaKey: ApproachType
  1871. blobDateModified: '2023-04-03T12:08:39.891981-04:00'
  1872. contentSize: 11613336
  1873. contentUrl:
  1874. - https://api.dandiarchive.org/api/assets/6799ecdc-ff25-4a70-894e-fbf23762a8d1/download/
  1875. - https://dandiarchive-embargo.s3.amazonaws.com/000471/blobs/6f3/33b/6f333b61-8077-422b-bbd5-a8c1f0100a86
  1876. dateModified: '2023-04-03T12:21:32.295671-04:00'
  1877. digest:
  1878. dandi:dandi-etag: 8b0784c242fb1ee635fa37665aee476a-1
  1879. dandi:sha2-256: a6d30f13e02b953a212f6768840538fae220c1532a26a94c12e7af03b2ea92f0
  1880. encodingFormat: application/x-nwb
  1881. id: dandiasset:6799ecdc-ff25-4a70-894e-fbf23762a8d1
  1882. identifier: 6799ecdc-ff25-4a70-894e-fbf23762a8d1
  1883. measurementTechnique:
  1884. - name: behavioral technique
  1885. schemaKey: MeasurementTechniqueType
  1886. - name: analytical technique
  1887. schemaKey: MeasurementTechniqueType
  1888. path: sub-f#0596/sub-f#0596_ses-20170824T142332_behavior.nwb
  1889. schemaKey: Asset
  1890. schemaVersion: 0.6.4
  1891. variableMeasured:
  1892. - schemaKey: PropertyValue
  1893. value: BehavioralTimeSeries
  1894. - schemaKey: PropertyValue
  1895. value: ProcessingModule
  1896. wasAttributedTo:
  1897. - age:
  1898. schemaKey: PropertyValue
  1899. unitText: ISO-8601 duration
  1900. value: P4D
  1901. valueReference:
  1902. schemaKey: PropertyValue
  1903. value: dandi:BirthReference
  1904. genotype: Kir / MB607B
  1905. identifier: f#0596
  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_7227
  1913. name: Drosophila melanogaster - Fruit fly
  1914. schemaKey: SpeciesType
  1915. wasGeneratedBy:
  1916. - description: find neurons involved in visual learning in an appetitive conditioning
  1917. paradigm
  1918. name: Acquisition session
  1919. schemaKey: Session
  1920. startDate: '2017-08-24T14:23:32-04:00'
  1921. - description: Metadata generated by DANDI cli
  1922. endDate: '2023-04-03T12:21:32.295663-04:00'
  1923. id: urn:uuid:795ea33b-e45c-4c4e-a288-bf4689686916
  1924. name: Metadata generation
  1925. schemaKey: Activity
  1926. startDate: '2023-04-03T12:21:32.291179-04: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.51.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: behavioral approach
  1939. schemaKey: ApproachType
  1940. blobDateModified: '2023-04-03T12:09:06.277325-04:00'
  1941. contentSize: 11613208
  1942. contentUrl:
  1943. - https://api.dandiarchive.org/api/assets/b5883e30-0988-41f6-9287-1339324465d5/download/
  1944. - https://dandiarchive-embargo.s3.amazonaws.com/000471/blobs/262/0e4/2620e4af-1ff7-424a-89ee-d240e406662a
  1945. dateModified: '2023-04-03T12:21:33.027251-04:00'
  1946. digest:
  1947. dandi:dandi-etag: 7ab1ab559358292e25d33c0d03c65067-1
  1948. dandi:sha2-256: 5ba5f0f1dc988d21bc937aec8c66b45551b81ea18254d7c25ab7afe3a51b79d4
  1949. encodingFormat: application/x-nwb
  1950. id: dandiasset:b5883e30-0988-41f6-9287-1339324465d5
  1951. identifier: b5883e30-0988-41f6-9287-1339324465d5
  1952. measurementTechnique:
  1953. - name: behavioral technique
  1954. schemaKey: MeasurementTechniqueType
  1955. - name: analytical technique
  1956. schemaKey: MeasurementTechniqueType
  1957. path: sub-f#0735/sub-f#0735_ses-20180528T203528_behavior.nwb
  1958. schemaKey: Asset
  1959. schemaVersion: 0.6.4
  1960. variableMeasured:
  1961. - schemaKey: PropertyValue
  1962. value: BehavioralTimeSeries
  1963. - schemaKey: PropertyValue
  1964. value: ProcessingModule
  1965. wasAttributedTo:
  1966. - age:
  1967. schemaKey: PropertyValue
  1968. unitText: ISO-8601 duration
  1969. value: P4D
  1970. valueReference:
  1971. schemaKey: PropertyValue
  1972. value: dandi:BirthReference
  1973. genotype: DL / MB607B
  1974. identifier: f#0735
  1975. schemaKey: Participant
  1976. sex:
  1977. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  1978. name: Female
  1979. schemaKey: SexType
  1980. species:
  1981. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7227
  1982. name: Drosophila melanogaster - Fruit fly
  1983. schemaKey: SpeciesType
  1984. wasGeneratedBy:
  1985. - description: find neurons involved in visual learning in an appetitive conditioning
  1986. paradigm
  1987. name: Acquisition session
  1988. schemaKey: Session
  1989. startDate: '2018-05-28T20:35:28-04:00'
  1990. - description: Metadata generated by DANDI cli
  1991. endDate: '2023-04-03T12:21:33.027244-04:00'
  1992. id: urn:uuid:1c66ba21-c736-40d3-9d55-d1072c02796d
  1993. name: Metadata generation
  1994. schemaKey: Activity
  1995. startDate: '2023-04-03T12:21:33.026579-04:00'
  1996. wasAssociatedWith:
  1997. - identifier: RRID:SCR_019009
  1998. name: DANDI Command Line Interface
  1999. schemaKey: Software
  2000. url: https://github.com/dandi/dandi-cli
  2001. version: 0.51.0
  2002. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2003. access:
  2004. - schemaKey: AccessRequirements
  2005. status: dandi:OpenAccess
  2006. approach:
  2007. - name: behavioral approach
  2008. schemaKey: ApproachType
  2009. blobDateModified: '2023-04-03T12:09:09.612243-04:00'
  2010. contentSize: 7636312
  2011. contentUrl:
  2012. - https://api.dandiarchive.org/api/assets/ddd00eb1-cc02-4264-a14c-02b9ba2620c3/download/
  2013. - https://dandiarchive-embargo.s3.amazonaws.com/000471/blobs/cad/43e/cad43ea2-6eb9-44f9-8a8f-a0acf08cd1b1
  2014. dateModified: '2023-04-03T12:21:36.883203-04:00'
  2015. digest:
  2016. dandi:dandi-etag: 5ec8f65eef222dc33aa207f6c38f48a7-1
  2017. dandi:sha2-256: b932ce2552bbdbad392a605c1226b3710b3ea6541d0e31e30e00885a8b6de1a2
  2018. encodingFormat: application/x-nwb
  2019. id: dandiasset:ddd00eb1-cc02-4264-a14c-02b9ba2620c3
  2020. identifier: ddd00eb1-cc02-4264-a14c-02b9ba2620c3
  2021. measurementTechnique:
  2022. - name: behavioral technique
  2023. schemaKey: MeasurementTechniqueType
  2024. - name: analytical technique
  2025. schemaKey: MeasurementTechniqueType
  2026. path: sub-f#0748/sub-f#0748_ses-20180720T203300_behavior.nwb
  2027. schemaKey: Asset
  2028. schemaVersion: 0.6.4
  2029. variableMeasured:
  2030. - schemaKey: PropertyValue
  2031. value: BehavioralTimeSeries
  2032. - schemaKey: PropertyValue
  2033. value: ProcessingModule
  2034. wasAttributedTo:
  2035. - age:
  2036. schemaKey: PropertyValue
  2037. unitText: ISO-8601 duration
  2038. value: P4D
  2039. valueReference:
  2040. schemaKey: PropertyValue
  2041. value: dandi:BirthReference
  2042. genotype: Kir / MB607B
  2043. identifier: f#0748
  2044. schemaKey: Participant
  2045. sex:
  2046. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  2047. name: Female
  2048. schemaKey: SexType
  2049. species:
  2050. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7227
  2051. name: Drosophila melanogaster - Fruit fly
  2052. schemaKey: SpeciesType
  2053. wasGeneratedBy:
  2054. - description: find neurons involved in visual learning in an appetitive conditioning
  2055. paradigm
  2056. name: Acquisition session
  2057. schemaKey: Session
  2058. startDate: '2018-07-20T20:33:00-04:00'
  2059. - description: Metadata generated by DANDI cli
  2060. endDate: '2023-04-03T12:21:36.883193-04:00'
  2061. id: urn:uuid:537c0b25-7e01-456c-b479-6d74fccff68c
  2062. name: Metadata generation
  2063. schemaKey: Activity
  2064. startDate: '2023-04-03T12:21:36.872855-04:00'
  2065. wasAssociatedWith:
  2066. - identifier: RRID:SCR_019009
  2067. name: DANDI Command Line Interface
  2068. schemaKey: Software
  2069. url: https://github.com/dandi/dandi-cli
  2070. version: 0.51.0
  2071. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2072. access:
  2073. - schemaKey: AccessRequirements
  2074. status: dandi:OpenAccess
  2075. approach:
  2076. - name: behavioral approach
  2077. schemaKey: ApproachType
  2078. blobDateModified: '2023-04-03T12:09:17.454990-04:00'
  2079. contentSize: 7635672
  2080. contentUrl:
  2081. - https://api.dandiarchive.org/api/assets/3989d3b2-f20c-4833-a700-c4dc22447eee/download/
  2082. - https://dandiarchive-embargo.s3.amazonaws.com/000471/blobs/962/0d4/9620d49c-6f29-43cf-9be7-21869801ef13
  2083. dateModified: '2023-04-03T12:21:37.439707-04:00'
  2084. digest:
  2085. dandi:dandi-etag: f40456e0beb5988ec4ab966c45a6abd2-1
  2086. dandi:sha2-256: a0766573a1274678af2b4f4cba94dd9d34c61f39eab328d7316777690ac054a2
  2087. encodingFormat: application/x-nwb
  2088. id: dandiasset:3989d3b2-f20c-4833-a700-c4dc22447eee
  2089. identifier: 3989d3b2-f20c-4833-a700-c4dc22447eee
  2090. measurementTechnique:
  2091. - name: behavioral technique
  2092. schemaKey: MeasurementTechniqueType
  2093. - name: analytical technique
  2094. schemaKey: MeasurementTechniqueType
  2095. path: sub-f#0803/sub-f#0803_ses-20190212T163634_behavior.nwb
  2096. schemaKey: Asset
  2097. schemaVersion: 0.6.4
  2098. variableMeasured:
  2099. - schemaKey: PropertyValue
  2100. value: BehavioralTimeSeries
  2101. - schemaKey: PropertyValue
  2102. value: ProcessingModule
  2103. wasAttributedTo:
  2104. - age:
  2105. schemaKey: PropertyValue
  2106. unitText: ISO-8601 duration
  2107. value: P4D
  2108. valueReference:
  2109. schemaKey: PropertyValue
  2110. value: dandi:BirthReference
  2111. genotype: Kir / MB008B
  2112. identifier: f#0803
  2113. schemaKey: Participant
  2114. sex:
  2115. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  2116. name: Female
  2117. schemaKey: SexType
  2118. species:
  2119. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7227
  2120. name: Drosophila melanogaster - Fruit fly
  2121. schemaKey: SpeciesType
  2122. wasGeneratedBy:
  2123. - description: find neurons involved in visual learning in an appetitive conditioning
  2124. paradigm
  2125. name: Acquisition session
  2126. schemaKey: Session
  2127. startDate: '2019-02-12T16:36:34-05:00'
  2128. - description: Metadata generated by DANDI cli
  2129. endDate: '2023-04-03T12:21:37.439698-04:00'
  2130. id: urn:uuid:0c7a2c96-c1bd-4d90-b023-9fd64c549f98
  2131. name: Metadata generation
  2132. schemaKey: Activity
  2133. startDate: '2023-04-03T12:21:37.438974-04:00'
  2134. wasAssociatedWith:
  2135. - identifier: RRID:SCR_019009
  2136. name: DANDI Command Line Interface
  2137. schemaKey: Software
  2138. url: https://github.com/dandi/dandi-cli
  2139. version: 0.51.0
  2140. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2141. access:
  2142. - schemaKey: AccessRequirements
  2143. status: dandi:OpenAccess
  2144. approach:
  2145. - name: behavioral approach
  2146. schemaKey: ApproachType
  2147. blobDateModified: '2023-04-03T12:09:08.259300-04:00'
  2148. contentSize: 11617240
  2149. contentUrl:
  2150. - https://api.dandiarchive.org/api/assets/01047b7a-fecf-441e-b1eb-b3d17257400c/download/
  2151. - https://dandiarchive-embargo.s3.amazonaws.com/000471/blobs/fd7/a82/fd7a823a-2b9b-4780-a947-b194022f4fca
  2152. dateModified: '2023-04-03T12:21:36.748267-04:00'
  2153. digest:
  2154. dandi:dandi-etag: 25ba5d5edac3921980c97b7aa60d24a3-1
  2155. dandi:sha2-256: 1c3083d3322c37293bc55e2229d78f0fa2c5957964493ad383cfcb3d521d29b0
  2156. encodingFormat: application/x-nwb
  2157. id: dandiasset:01047b7a-fecf-441e-b1eb-b3d17257400c
  2158. identifier: 01047b7a-fecf-441e-b1eb-b3d17257400c
  2159. measurementTechnique:
  2160. - name: behavioral technique
  2161. schemaKey: MeasurementTechniqueType
  2162. - name: analytical technique
  2163. schemaKey: MeasurementTechniqueType
  2164. path: sub-f#0740/sub-f#0740_ses-20180530T142719_behavior.nwb
  2165. schemaKey: Asset
  2166. schemaVersion: 0.6.4
  2167. variableMeasured:
  2168. - schemaKey: PropertyValue
  2169. value: BehavioralTimeSeries
  2170. - schemaKey: PropertyValue
  2171. value: ProcessingModule
  2172. wasAttributedTo:
  2173. - age:
  2174. schemaKey: PropertyValue
  2175. unitText: ISO-8601 duration
  2176. value: P4D
  2177. valueReference:
  2178. schemaKey: PropertyValue
  2179. value: dandi:BirthReference
  2180. genotype: Kir / MB008B
  2181. identifier: f#0740
  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_7227
  2189. name: Drosophila melanogaster - Fruit fly
  2190. schemaKey: SpeciesType
  2191. wasGeneratedBy:
  2192. - description: find neurons involved in visual learning in an appetitive conditioning
  2193. paradigm
  2194. name: Acquisition session
  2195. schemaKey: Session
  2196. startDate: '2018-05-30T14:27:19-04:00'
  2197. - description: Metadata generated by DANDI cli
  2198. endDate: '2023-04-03T12:21:36.748260-04:00'
  2199. id: urn:uuid:4fe69340-6500-402a-b601-fbd4999f13ad
  2200. name: Metadata generation
  2201. schemaKey: Activity
  2202. startDate: '2023-04-03T12:21:36.745293-04: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.51.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: behavioral approach
  2215. schemaKey: ApproachType
  2216. blobDateModified: '2023-04-03T12:08:54.105963-04:00'
  2217. contentSize: 11616536
  2218. contentUrl:
  2219. - https://api.dandiarchive.org/api/assets/2ce005e7-76d3-421a-b8ac-7838c3345378/download/
  2220. - https://dandiarchive-embargo.s3.amazonaws.com/000471/blobs/e46/88e/e4688ebc-a1a9-400f-bbc3-98c43a5c9d37
  2221. dateModified: '2023-04-03T12:21:37.173671-04:00'
  2222. digest:
  2223. dandi:dandi-etag: f3a70b68804655f1662cc203b4105ee6-1
  2224. dandi:sha2-256: d82d0845d8c0a990c06c3b0f3035bffe32410dccb69fd5705296e394dc4dbdb5
  2225. encodingFormat: application/x-nwb
  2226. id: dandiasset:2ce005e7-76d3-421a-b8ac-7838c3345378
  2227. identifier: 2ce005e7-76d3-421a-b8ac-7838c3345378
  2228. measurementTechnique:
  2229. - name: behavioral technique
  2230. schemaKey: MeasurementTechniqueType
  2231. - name: analytical technique
  2232. schemaKey: MeasurementTechniqueType
  2233. path: sub-f#0669/sub-f#0669_ses-20171230T195248_behavior.nwb
  2234. schemaKey: Asset
  2235. schemaVersion: 0.6.4
  2236. variableMeasured:
  2237. - schemaKey: PropertyValue
  2238. value: BehavioralTimeSeries
  2239. - schemaKey: PropertyValue
  2240. value: ProcessingModule
  2241. wasAttributedTo:
  2242. - age:
  2243. schemaKey: PropertyValue
  2244. unitText: ISO-8601 duration
  2245. value: P4D
  2246. valueReference:
  2247. schemaKey: PropertyValue
  2248. value: dandi:BirthReference
  2249. genotype: Kir / MB131B
  2250. identifier: f#0669
  2251. schemaKey: Participant
  2252. sex:
  2253. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  2254. name: Female
  2255. schemaKey: SexType
  2256. species:
  2257. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7227
  2258. name: Drosophila melanogaster - Fruit fly
  2259. schemaKey: SpeciesType
  2260. wasGeneratedBy:
  2261. - description: find neurons involved in visual learning in an appetitive conditioning
  2262. paradigm
  2263. name: Acquisition session
  2264. schemaKey: Session
  2265. startDate: '2017-12-30T19:52:48-05:00'
  2266. - description: Metadata generated by DANDI cli
  2267. endDate: '2023-04-03T12:21:37.173663-04:00'
  2268. id: urn:uuid:af84c07d-f514-4744-81f6-32c84c74fdca
  2269. name: Metadata generation
  2270. schemaKey: Activity
  2271. startDate: '2023-04-03T12:21:37.169374-04:00'
  2272. wasAssociatedWith:
  2273. - identifier: RRID:SCR_019009
  2274. name: DANDI Command Line Interface
  2275. schemaKey: Software
  2276. url: https://github.com/dandi/dandi-cli
  2277. version: 0.51.0
  2278. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2279. access:
  2280. - schemaKey: AccessRequirements
  2281. status: dandi:OpenAccess
  2282. approach:
  2283. - name: behavioral approach
  2284. schemaKey: ApproachType
  2285. blobDateModified: '2023-04-03T12:08:48.756488-04:00'
  2286. contentSize: 11613016
  2287. contentUrl:
  2288. - https://api.dandiarchive.org/api/assets/a8d4654f-882e-4675-bcb1-04d6f05d496a/download/
  2289. - https://dandiarchive-embargo.s3.amazonaws.com/000471/blobs/0e5/750/0e5750c7-428a-437d-b887-8400157e248a
  2290. dateModified: '2023-04-03T12:21:37.512424-04:00'
  2291. digest:
  2292. dandi:dandi-etag: 765c33a25f8d9722c14bdac47e493f67-1
  2293. dandi:sha2-256: cf74c3a7cb6481b3278513721116c9b776069d18f59fcc61371663ad7865a65a
  2294. encodingFormat: application/x-nwb
  2295. id: dandiasset:a8d4654f-882e-4675-bcb1-04d6f05d496a
  2296. identifier: a8d4654f-882e-4675-bcb1-04d6f05d496a
  2297. measurementTechnique:
  2298. - name: behavioral technique
  2299. schemaKey: MeasurementTechniqueType
  2300. - name: analytical technique
  2301. schemaKey: MeasurementTechniqueType
  2302. path: sub-f#0656/sub-f#0656_ses-20171215T164730_behavior.nwb
  2303. schemaKey: Asset
  2304. schemaVersion: 0.6.4
  2305. variableMeasured:
  2306. - schemaKey: PropertyValue
  2307. value: BehavioralTimeSeries
  2308. - schemaKey: PropertyValue
  2309. value: ProcessingModule
  2310. wasAttributedTo:
  2311. - age:
  2312. schemaKey: PropertyValue
  2313. unitText: ISO-8601 duration
  2314. value: P4D
  2315. valueReference:
  2316. schemaKey: PropertyValue
  2317. value: dandi:BirthReference
  2318. genotype: Kir / MB008B
  2319. identifier: f#0656
  2320. schemaKey: Participant
  2321. sex:
  2322. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  2323. name: Female
  2324. schemaKey: SexType
  2325. species:
  2326. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7227
  2327. name: Drosophila melanogaster - Fruit fly
  2328. schemaKey: SpeciesType
  2329. wasGeneratedBy:
  2330. - description: find neurons involved in visual learning in an appetitive conditioning
  2331. paradigm
  2332. name: Acquisition session
  2333. schemaKey: Session
  2334. startDate: '2017-12-15T16:47:30-05:00'
  2335. - description: Metadata generated by DANDI cli
  2336. endDate: '2023-04-03T12:21:37.512417-04:00'
  2337. id: urn:uuid:05bbeaed-2872-4666-ac0a-5d45e8d6ec8e
  2338. name: Metadata generation
  2339. schemaKey: Activity
  2340. startDate: '2023-04-03T12:21:37.511748-04:00'
  2341. wasAssociatedWith:
  2342. - identifier: RRID:SCR_019009
  2343. name: DANDI Command Line Interface
  2344. schemaKey: Software
  2345. url: https://github.com/dandi/dandi-cli
  2346. version: 0.51.0
  2347. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2348. access:
  2349. - schemaKey: AccessRequirements
  2350. status: dandi:OpenAccess
  2351. approach:
  2352. - name: behavioral approach
  2353. schemaKey: ApproachType
  2354. blobDateModified: '2023-04-03T12:08:50.100215-04:00'
  2355. contentSize: 11613016
  2356. contentUrl:
  2357. - https://api.dandiarchive.org/api/assets/c48ae3e8-99b4-495a-957c-09286e87aac3/download/
  2358. - https://dandiarchive-embargo.s3.amazonaws.com/000471/blobs/675/c1a/675c1a89-ba10-4eb3-8d8d-63da3d0aa146
  2359. dateModified: '2023-04-03T12:21:40.637458-04:00'
  2360. digest:
  2361. dandi:dandi-etag: e9299cd72e30d5a3dc24dda39c323d6d-1
  2362. dandi:sha2-256: 90cef4154503c693a236f00593d2e932418383feb846e899b88d282dd08bb35c
  2363. encodingFormat: application/x-nwb
  2364. id: dandiasset:c48ae3e8-99b4-495a-957c-09286e87aac3
  2365. identifier: c48ae3e8-99b4-495a-957c-09286e87aac3
  2366. measurementTechnique:
  2367. - name: behavioral technique
  2368. schemaKey: MeasurementTechniqueType
  2369. - name: analytical technique
  2370. schemaKey: MeasurementTechniqueType
  2371. path: sub-f#0658/sub-f#0658_ses-20171218T173838_behavior.nwb
  2372. schemaKey: Asset
  2373. schemaVersion: 0.6.4
  2374. variableMeasured:
  2375. - schemaKey: PropertyValue
  2376. value: BehavioralTimeSeries
  2377. - schemaKey: PropertyValue
  2378. value: ProcessingModule
  2379. wasAttributedTo:
  2380. - age:
  2381. schemaKey: PropertyValue
  2382. unitText: ISO-8601 duration
  2383. value: P4D
  2384. valueReference:
  2385. schemaKey: PropertyValue
  2386. value: dandi:BirthReference
  2387. genotype: Kir / MB131B
  2388. identifier: f#0658
  2389. schemaKey: Participant
  2390. sex:
  2391. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  2392. name: Female
  2393. schemaKey: SexType
  2394. species:
  2395. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7227
  2396. name: Drosophila melanogaster - Fruit fly
  2397. schemaKey: SpeciesType
  2398. wasGeneratedBy:
  2399. - description: find neurons involved in visual learning in an appetitive conditioning
  2400. paradigm
  2401. name: Acquisition session
  2402. schemaKey: Session
  2403. startDate: '2017-12-18T17:38:38-05:00'
  2404. - description: Metadata generated by DANDI cli
  2405. endDate: '2023-04-03T12:21:40.637449-04:00'
  2406. id: urn:uuid:39ed22ac-82aa-4f35-8704-23417a9e2ff2
  2407. name: Metadata generation
  2408. schemaKey: Activity
  2409. startDate: '2023-04-03T12:21:40.625967-04:00'
  2410. wasAssociatedWith:
  2411. - identifier: RRID:SCR_019009
  2412. name: DANDI Command Line Interface
  2413. schemaKey: Software
  2414. url: https://github.com/dandi/dandi-cli
  2415. version: 0.51.0
  2416. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2417. access:
  2418. - schemaKey: AccessRequirements
  2419. status: dandi:OpenAccess
  2420. approach:
  2421. - name: behavioral approach
  2422. schemaKey: ApproachType
  2423. blobDateModified: '2023-04-03T12:08:53.425222-04:00'
  2424. contentSize: 11616280
  2425. contentUrl:
  2426. - https://api.dandiarchive.org/api/assets/eaf33fa6-465f-4ce9-a8ce-37ce501a5f66/download/
  2427. - https://dandiarchive-embargo.s3.amazonaws.com/000471/blobs/e32/89e/e3289e53-4879-496e-a5f3-f7a87f35cdff
  2428. dateModified: '2023-04-03T12:21:41.380737-04:00'
  2429. digest:
  2430. dandi:dandi-etag: 2e8a0a5d4ba0bedc64cf4a85dc918b81-1
  2431. dandi:sha2-256: 45ae94915ebec66e323ed0b96b130fbcff89287e70899800f47f1633eadbece7
  2432. encodingFormat: application/x-nwb
  2433. id: dandiasset:eaf33fa6-465f-4ce9-a8ce-37ce501a5f66
  2434. identifier: eaf33fa6-465f-4ce9-a8ce-37ce501a5f66
  2435. measurementTechnique:
  2436. - name: behavioral technique
  2437. schemaKey: MeasurementTechniqueType
  2438. - name: analytical technique
  2439. schemaKey: MeasurementTechniqueType
  2440. path: sub-f#0667/sub-f#0667_ses-20171226T163423_behavior.nwb
  2441. schemaKey: Asset
  2442. schemaVersion: 0.6.4
  2443. variableMeasured:
  2444. - schemaKey: PropertyValue
  2445. value: BehavioralTimeSeries
  2446. - schemaKey: PropertyValue
  2447. value: ProcessingModule
  2448. wasAttributedTo:
  2449. - age:
  2450. schemaKey: PropertyValue
  2451. unitText: ISO-8601 duration
  2452. value: P4D
  2453. valueReference:
  2454. schemaKey: PropertyValue
  2455. value: dandi:BirthReference
  2456. genotype: Kir / MB131B
  2457. identifier: f#0667
  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_7227
  2465. name: Drosophila melanogaster - Fruit fly
  2466. schemaKey: SpeciesType
  2467. wasGeneratedBy:
  2468. - description: find neurons involved in visual learning in an appetitive conditioning
  2469. paradigm
  2470. name: Acquisition session
  2471. schemaKey: Session
  2472. startDate: '2017-12-26T16:34:23-05:00'
  2473. - description: Metadata generated by DANDI cli
  2474. endDate: '2023-04-03T12:21:41.380730-04:00'
  2475. id: urn:uuid:eb35366b-50a8-4f8c-9b78-c47126ded914
  2476. name: Metadata generation
  2477. schemaKey: Activity
  2478. startDate: '2023-04-03T12:21:41.374044-04: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.51.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: behavioral approach
  2491. schemaKey: ApproachType
  2492. blobDateModified: '2023-04-03T12:08:50.762197-04:00'
  2493. contentSize: 11615576
  2494. contentUrl:
  2495. - https://api.dandiarchive.org/api/assets/bdd91850-f2d4-458a-97ee-7e9373c7b5f3/download/
  2496. - https://dandiarchive-embargo.s3.amazonaws.com/000471/blobs/8ea/c37/8eac3737-d039-4539-977c-0cccddfa7baa
  2497. dateModified: '2023-04-03T12:21:41.837049-04:00'
  2498. digest:
  2499. dandi:dandi-etag: ba8b04c4ead5d05c3b42202900a4d01a-1
  2500. dandi:sha2-256: c1f7d587614acd1d935aa8a4aa97d48f770479645afa62d42ac6303f02cec17f
  2501. encodingFormat: application/x-nwb
  2502. id: dandiasset:bdd91850-f2d4-458a-97ee-7e9373c7b5f3
  2503. identifier: bdd91850-f2d4-458a-97ee-7e9373c7b5f3
  2504. measurementTechnique:
  2505. - name: behavioral technique
  2506. schemaKey: MeasurementTechniqueType
  2507. - name: analytical technique
  2508. schemaKey: MeasurementTechniqueType
  2509. path: sub-f#0659/sub-f#0659_ses-20171218T174825_behavior.nwb
  2510. schemaKey: Asset
  2511. schemaVersion: 0.6.4
  2512. variableMeasured:
  2513. - schemaKey: PropertyValue
  2514. value: BehavioralTimeSeries
  2515. - schemaKey: PropertyValue
  2516. value: ProcessingModule
  2517. wasAttributedTo:
  2518. - age:
  2519. schemaKey: PropertyValue
  2520. unitText: ISO-8601 duration
  2521. value: P4D
  2522. valueReference:
  2523. schemaKey: PropertyValue
  2524. value: dandi:BirthReference
  2525. genotype: Kir / MB008B
  2526. identifier: f#0659
  2527. schemaKey: Participant
  2528. sex:
  2529. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  2530. name: Female
  2531. schemaKey: SexType
  2532. species:
  2533. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7227
  2534. name: Drosophila melanogaster - Fruit fly
  2535. schemaKey: SpeciesType
  2536. wasGeneratedBy:
  2537. - description: find neurons involved in visual learning in an appetitive conditioning
  2538. paradigm
  2539. name: Acquisition session
  2540. schemaKey: Session
  2541. startDate: '2017-12-18T17:48:25-05:00'
  2542. - description: Metadata generated by DANDI cli
  2543. endDate: '2023-04-03T12:21:41.837040-04:00'
  2544. id: urn:uuid:ed8a4698-f4fc-41d0-85b5-b3a060268c01
  2545. name: Metadata generation
  2546. schemaKey: Activity
  2547. startDate: '2023-04-03T12:21:41.827251-04:00'
  2548. wasAssociatedWith:
  2549. - identifier: RRID:SCR_019009
  2550. name: DANDI Command Line Interface
  2551. schemaKey: Software
  2552. url: https://github.com/dandi/dandi-cli
  2553. version: 0.51.0
  2554. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2555. access:
  2556. - schemaKey: AccessRequirements
  2557. status: dandi:OpenAccess
  2558. approach:
  2559. - name: behavioral approach
  2560. schemaKey: ApproachType
  2561. blobDateModified: '2023-04-03T12:08:49.422065-04:00'
  2562. contentSize: 11616344
  2563. contentUrl:
  2564. - https://api.dandiarchive.org/api/assets/78dced8e-9964-42c0-82fa-23a9bb53d81a/download/
  2565. - https://dandiarchive-embargo.s3.amazonaws.com/000471/blobs/163/ff2/163ff2d3-1ad6-4ac5-a635-24c5e5352742
  2566. dateModified: '2023-04-03T12:21:42.393491-04:00'
  2567. digest:
  2568. dandi:dandi-etag: e1a99fab2081634b8db5226353feed7b-1
  2569. dandi:sha2-256: aec00d36a474ec1f4e8b35c765409053a0f546dbdd59ec22f777e808a7a119bb
  2570. encodingFormat: application/x-nwb
  2571. id: dandiasset:78dced8e-9964-42c0-82fa-23a9bb53d81a
  2572. identifier: 78dced8e-9964-42c0-82fa-23a9bb53d81a
  2573. measurementTechnique:
  2574. - name: behavioral technique
  2575. schemaKey: MeasurementTechniqueType
  2576. - name: analytical technique
  2577. schemaKey: MeasurementTechniqueType
  2578. path: sub-f#0657/sub-f#0657_ses-20171215T165402_behavior.nwb
  2579. schemaKey: Asset
  2580. schemaVersion: 0.6.4
  2581. variableMeasured:
  2582. - schemaKey: PropertyValue
  2583. value: BehavioralTimeSeries
  2584. - schemaKey: PropertyValue
  2585. value: ProcessingModule
  2586. wasAttributedTo:
  2587. - age:
  2588. schemaKey: PropertyValue
  2589. unitText: ISO-8601 duration
  2590. value: P4D
  2591. valueReference:
  2592. schemaKey: PropertyValue
  2593. value: dandi:BirthReference
  2594. genotype: Kir / MB131B
  2595. identifier: f#0657
  2596. schemaKey: Participant
  2597. sex:
  2598. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  2599. name: Female
  2600. schemaKey: SexType
  2601. species:
  2602. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7227
  2603. name: Drosophila melanogaster - Fruit fly
  2604. schemaKey: SpeciesType
  2605. wasGeneratedBy:
  2606. - description: find neurons involved in visual learning in an appetitive conditioning
  2607. paradigm
  2608. name: Acquisition session
  2609. schemaKey: Session
  2610. startDate: '2017-12-15T16:54:02-05:00'
  2611. - description: Metadata generated by DANDI cli
  2612. endDate: '2023-04-03T12:21:42.393484-04:00'
  2613. id: urn:uuid:96d3c4aa-d283-4ca1-acfa-f74dfcfebaa7
  2614. name: Metadata generation
  2615. schemaKey: Activity
  2616. startDate: '2023-04-03T12:21:42.392778-04:00'
  2617. wasAssociatedWith:
  2618. - identifier: RRID:SCR_019009
  2619. name: DANDI Command Line Interface
  2620. schemaKey: Software
  2621. url: https://github.com/dandi/dandi-cli
  2622. version: 0.51.0
  2623. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2624. access:
  2625. - schemaKey: AccessRequirements
  2626. status: dandi:OpenAccess
  2627. approach:
  2628. - name: behavioral approach
  2629. schemaKey: ApproachType
  2630. blobDateModified: '2023-04-03T12:08:42.350676-04:00'
  2631. contentSize: 11613016
  2632. contentUrl:
  2633. - https://api.dandiarchive.org/api/assets/a88d4bb6-d66c-487b-952c-4b765b593f6d/download/
  2634. - https://dandiarchive-embargo.s3.amazonaws.com/000471/blobs/a88/bf3/a88bf325-67d8-4225-a746-82505cea1907
  2635. dateModified: '2023-04-03T12:21:43.791436-04:00'
  2636. digest:
  2637. dandi:dandi-etag: 49f8fd3711f79a782b4cc1dbf6b8eb0b-1
  2638. dandi:sha2-256: 0912e4a150fd86ec6ef85e7ea448fa04d38254b60acc22394574e413a6ee80b7
  2639. encodingFormat: application/x-nwb
  2640. id: dandiasset:a88d4bb6-d66c-487b-952c-4b765b593f6d
  2641. identifier: a88d4bb6-d66c-487b-952c-4b765b593f6d
  2642. measurementTechnique:
  2643. - name: behavioral technique
  2644. schemaKey: MeasurementTechniqueType
  2645. - name: analytical technique
  2646. schemaKey: MeasurementTechniqueType
  2647. path: sub-f#0610/sub-f#0610_ses-20170831T180750_behavior.nwb
  2648. schemaKey: Asset
  2649. schemaVersion: 0.6.4
  2650. variableMeasured:
  2651. - schemaKey: PropertyValue
  2652. value: BehavioralTimeSeries
  2653. - schemaKey: PropertyValue
  2654. value: ProcessingModule
  2655. wasAttributedTo:
  2656. - age:
  2657. schemaKey: PropertyValue
  2658. unitText: ISO-8601 duration
  2659. value: P4D
  2660. valueReference:
  2661. schemaKey: PropertyValue
  2662. value: dandi:BirthReference
  2663. genotype: Kir / MB417B
  2664. identifier: f#0610
  2665. schemaKey: Participant
  2666. sex:
  2667. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  2668. name: Female
  2669. schemaKey: SexType
  2670. species:
  2671. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7227
  2672. name: Drosophila melanogaster - Fruit fly
  2673. schemaKey: SpeciesType
  2674. wasGeneratedBy:
  2675. - description: find neurons involved in visual learning in an appetitive conditioning
  2676. paradigm
  2677. name: Acquisition session
  2678. schemaKey: Session
  2679. startDate: '2017-08-31T18:07:50-04:00'
  2680. - description: Metadata generated by DANDI cli
  2681. endDate: '2023-04-03T12:21:43.791428-04:00'
  2682. id: urn:uuid:483d220a-94e3-47d8-b11a-56f0bf0d99d7
  2683. name: Metadata generation
  2684. schemaKey: Activity
  2685. startDate: '2023-04-03T12:21:43.790743-04:00'
  2686. wasAssociatedWith:
  2687. - identifier: RRID:SCR_019009
  2688. name: DANDI Command Line Interface
  2689. schemaKey: Software
  2690. url: https://github.com/dandi/dandi-cli
  2691. version: 0.51.0
  2692. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2693. access:
  2694. - schemaKey: AccessRequirements
  2695. status: dandi:OpenAccess
  2696. approach:
  2697. - name: behavioral approach
  2698. schemaKey: ApproachType
  2699. blobDateModified: '2023-04-03T12:09:02.332568-04:00'
  2700. contentSize: 11613080
  2701. contentUrl:
  2702. - https://api.dandiarchive.org/api/assets/d25322f2-9b63-45cb-91ad-f325cf5b527b/download/
  2703. - https://dandiarchive-embargo.s3.amazonaws.com/000471/blobs/284/f60/284f60fb-b5d3-4c5b-9145-caea90666afb
  2704. dateModified: '2023-04-03T12:21:45.213214-04:00'
  2705. digest:
  2706. dandi:dandi-etag: 52c7196624fcc5a9a4a50d61014b0a44-1
  2707. dandi:sha2-256: 893b168b567a5949c704a5332f20bde8762f279c32459dad6eaeb7967649aee2
  2708. encodingFormat: application/x-nwb
  2709. id: dandiasset:d25322f2-9b63-45cb-91ad-f325cf5b527b
  2710. identifier: d25322f2-9b63-45cb-91ad-f325cf5b527b
  2711. measurementTechnique:
  2712. - name: behavioral technique
  2713. schemaKey: MeasurementTechniqueType
  2714. - name: analytical technique
  2715. schemaKey: MeasurementTechniqueType
  2716. path: sub-f#0686/sub-f#0686_ses-20180211T180948_behavior.nwb
  2717. schemaKey: Asset
  2718. schemaVersion: 0.6.4
  2719. variableMeasured:
  2720. - schemaKey: PropertyValue
  2721. value: BehavioralTimeSeries
  2722. - schemaKey: PropertyValue
  2723. value: ProcessingModule
  2724. wasAttributedTo:
  2725. - age:
  2726. schemaKey: PropertyValue
  2727. unitText: ISO-8601 duration
  2728. value: P4D
  2729. valueReference:
  2730. schemaKey: PropertyValue
  2731. value: dandi:BirthReference
  2732. genotype: Kir / MB008B
  2733. identifier: f#0686
  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_7227
  2741. name: Drosophila melanogaster - Fruit fly
  2742. schemaKey: SpeciesType
  2743. wasGeneratedBy:
  2744. - description: find neurons involved in visual learning in an appetitive conditioning
  2745. paradigm
  2746. name: Acquisition session
  2747. schemaKey: Session
  2748. startDate: '2018-02-11T18:09:48-05:00'
  2749. - description: Metadata generated by DANDI cli
  2750. endDate: '2023-04-03T12:21:45.213206-04:00'
  2751. id: urn:uuid:17d016dc-8789-4c32-bd56-476605d0c4a8
  2752. name: Metadata generation
  2753. schemaKey: Activity
  2754. startDate: '2023-04-03T12:21:45.212518-04:00'
  2755. wasAssociatedWith:
  2756. - identifier: RRID:SCR_019009
  2757. name: DANDI Command Line Interface
  2758. schemaKey: Software
  2759. url: https://github.com/dandi/dandi-cli
  2760. version: 0.51.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: behavioral approach
  2767. schemaKey: ApproachType
  2768. blobDateModified: '2023-04-03T12:08:51.419245-04:00'
  2769. contentSize: 11616024
  2770. contentUrl:
  2771. - https://api.dandiarchive.org/api/assets/e3342149-1f26-4cd3-9d36-64a7482e8272/download/
  2772. - https://dandiarchive-embargo.s3.amazonaws.com/000471/blobs/97f/772/97f772dc-2f2d-4fc0-af6d-3db56c2af0d2
  2773. dateModified: '2023-04-03T12:21:41.601753-04:00'
  2774. digest:
  2775. dandi:dandi-etag: 9986564319e23bc58a86ae5377b3fb8d-1
  2776. dandi:sha2-256: bf05a44255b4375d30f115a0cbc9e09369e3729028d4bd0d9e192affb77363d6
  2777. encodingFormat: application/x-nwb
  2778. id: dandiasset:e3342149-1f26-4cd3-9d36-64a7482e8272
  2779. identifier: e3342149-1f26-4cd3-9d36-64a7482e8272
  2780. measurementTechnique:
  2781. - name: behavioral technique
  2782. schemaKey: MeasurementTechniqueType
  2783. - name: analytical technique
  2784. schemaKey: MeasurementTechniqueType
  2785. path: sub-f#0661/sub-f#0661_ses-20171219T184650_behavior.nwb
  2786. schemaKey: Asset
  2787. schemaVersion: 0.6.4
  2788. variableMeasured:
  2789. - schemaKey: PropertyValue
  2790. value: BehavioralTimeSeries
  2791. - schemaKey: PropertyValue
  2792. value: ProcessingModule
  2793. wasAttributedTo:
  2794. - age:
  2795. schemaKey: PropertyValue
  2796. unitText: ISO-8601 duration
  2797. value: P4D
  2798. valueReference:
  2799. schemaKey: PropertyValue
  2800. value: dandi:BirthReference
  2801. genotype: Kir / MB131B
  2802. identifier: f#0661
  2803. schemaKey: Participant
  2804. sex:
  2805. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  2806. name: Female
  2807. schemaKey: SexType
  2808. species:
  2809. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7227
  2810. name: Drosophila melanogaster - Fruit fly
  2811. schemaKey: SpeciesType
  2812. wasGeneratedBy:
  2813. - description: find neurons involved in visual learning in an appetitive conditioning
  2814. paradigm
  2815. name: Acquisition session
  2816. schemaKey: Session
  2817. startDate: '2017-12-19T18:46:50-05:00'
  2818. - description: Metadata generated by DANDI cli
  2819. endDate: '2023-04-03T12:21:41.601745-04:00'
  2820. id: urn:uuid:e1f51f02-b51e-45a5-9e79-dc5e20d35197
  2821. name: Metadata generation
  2822. schemaKey: Activity
  2823. startDate: '2023-04-03T12:21:41.595885-04:00'
  2824. wasAssociatedWith:
  2825. - identifier: RRID:SCR_019009
  2826. name: DANDI Command Line Interface
  2827. schemaKey: Software
  2828. url: https://github.com/dandi/dandi-cli
  2829. version: 0.51.0
  2830. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2831. access:
  2832. - schemaKey: AccessRequirements
  2833. status: dandi:OpenAccess
  2834. approach:
  2835. - name: behavioral approach
  2836. schemaKey: ApproachType
  2837. blobDateModified: '2023-04-03T12:08:46.056369-04:00'
  2838. contentSize: 11613016
  2839. contentUrl:
  2840. - https://api.dandiarchive.org/api/assets/6267ab9d-fd46-4e77-8e43-46f906b28db6/download/
  2841. - https://dandiarchive-embargo.s3.amazonaws.com/000471/blobs/a69/e0e/a69e0e30-555c-48eb-ae19-ba6ad24443ee
  2842. dateModified: '2023-04-03T12:21:42.164963-04:00'
  2843. digest:
  2844. dandi:dandi-etag: 40b5ad22370b1622e92752be808db814-1
  2845. dandi:sha2-256: c6e9350338cbd124cef2986881039924a0580e1861b83b71de1389e0330334fa
  2846. encodingFormat: application/x-nwb
  2847. id: dandiasset:6267ab9d-fd46-4e77-8e43-46f906b28db6
  2848. identifier: 6267ab9d-fd46-4e77-8e43-46f906b28db6
  2849. measurementTechnique:
  2850. - name: behavioral technique
  2851. schemaKey: MeasurementTechniqueType
  2852. - name: analytical technique
  2853. schemaKey: MeasurementTechniqueType
  2854. path: sub-f#0650/sub-f#0650_ses-20171206T193453_behavior.nwb
  2855. schemaKey: Asset
  2856. schemaVersion: 0.6.4
  2857. variableMeasured:
  2858. - schemaKey: PropertyValue
  2859. value: BehavioralTimeSeries
  2860. - schemaKey: PropertyValue
  2861. value: ProcessingModule
  2862. wasAttributedTo:
  2863. - age:
  2864. schemaKey: PropertyValue
  2865. unitText: ISO-8601 duration
  2866. value: P4D
  2867. valueReference:
  2868. schemaKey: PropertyValue
  2869. value: dandi:BirthReference
  2870. genotype: Kir / MB607B
  2871. identifier: f#0650
  2872. schemaKey: Participant
  2873. sex:
  2874. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  2875. name: Female
  2876. schemaKey: SexType
  2877. species:
  2878. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7227
  2879. name: Drosophila melanogaster - Fruit fly
  2880. schemaKey: SpeciesType
  2881. wasGeneratedBy:
  2882. - description: find neurons involved in visual learning in an appetitive conditioning
  2883. paradigm
  2884. name: Acquisition session
  2885. schemaKey: Session
  2886. startDate: '2017-12-06T19:34:53-05:00'
  2887. - description: Metadata generated by DANDI cli
  2888. endDate: '2023-04-03T12:21:42.164953-04:00'
  2889. id: urn:uuid:296e6682-cc65-4cfa-8a9e-f15b03a4c142
  2890. name: Metadata generation
  2891. schemaKey: Activity
  2892. startDate: '2023-04-03T12:21:42.162632-04:00'
  2893. wasAssociatedWith:
  2894. - identifier: RRID:SCR_019009
  2895. name: DANDI Command Line Interface
  2896. schemaKey: Software
  2897. url: https://github.com/dandi/dandi-cli
  2898. version: 0.51.0
  2899. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2900. access:
  2901. - schemaKey: AccessRequirements
  2902. status: dandi:OpenAccess
  2903. approach:
  2904. - name: behavioral approach
  2905. schemaKey: ApproachType
  2906. blobDateModified: '2023-04-03T12:08:43.991637-04:00'
  2907. contentSize: 11617048
  2908. contentUrl:
  2909. - https://api.dandiarchive.org/api/assets/7a4bbbd3-fa5f-4557-845f-7952f985b880/download/
  2910. - https://dandiarchive-embargo.s3.amazonaws.com/000471/blobs/d66/3f9/d663f91b-d2c2-4852-bb72-6709900e3325
  2911. dateModified: '2023-04-03T12:21:43.120663-04:00'
  2912. digest:
  2913. dandi:dandi-etag: 40cf0d9cf501104fc0017b3c93a6e2cb-1
  2914. dandi:sha2-256: 120499803f620256fe85ba15d0ac97a2252c435ef58c1fc17fd42ee2cf4b9682
  2915. encodingFormat: application/x-nwb
  2916. id: dandiasset:7a4bbbd3-fa5f-4557-845f-7952f985b880
  2917. identifier: 7a4bbbd3-fa5f-4557-845f-7952f985b880
  2918. measurementTechnique:
  2919. - name: behavioral technique
  2920. schemaKey: MeasurementTechniqueType
  2921. - name: analytical technique
  2922. schemaKey: MeasurementTechniqueType
  2923. path: sub-f#0617/sub-f#0617_ses-20170907T194300_behavior.nwb
  2924. schemaKey: Asset
  2925. schemaVersion: 0.6.4
  2926. variableMeasured:
  2927. - schemaKey: PropertyValue
  2928. value: BehavioralTimeSeries
  2929. - schemaKey: PropertyValue
  2930. value: ProcessingModule
  2931. wasAttributedTo:
  2932. - age:
  2933. schemaKey: PropertyValue
  2934. unitText: ISO-8601 duration
  2935. value: P4D
  2936. valueReference:
  2937. schemaKey: PropertyValue
  2938. value: dandi:BirthReference
  2939. genotype: Kir / MB607B
  2940. identifier: f#0617
  2941. schemaKey: Participant
  2942. sex:
  2943. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  2944. name: Female
  2945. schemaKey: SexType
  2946. species:
  2947. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7227
  2948. name: Drosophila melanogaster - Fruit fly
  2949. schemaKey: SpeciesType
  2950. wasGeneratedBy:
  2951. - description: find neurons involved in visual learning in an appetitive conditioning
  2952. paradigm
  2953. name: Acquisition session
  2954. schemaKey: Session
  2955. startDate: '2017-09-07T19:43:00-04:00'
  2956. - description: Metadata generated by DANDI cli
  2957. endDate: '2023-04-03T12:21:43.120655-04:00'
  2958. id: urn:uuid:99a1d76b-cf18-4b86-b427-48eab15f9f72
  2959. name: Metadata generation
  2960. schemaKey: Activity
  2961. startDate: '2023-04-03T12:21:43.119940-04:00'
  2962. wasAssociatedWith:
  2963. - identifier: RRID:SCR_019009
  2964. name: DANDI Command Line Interface
  2965. schemaKey: Software
  2966. url: https://github.com/dandi/dandi-cli
  2967. version: 0.51.0
  2968. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2969. access:
  2970. - schemaKey: AccessRequirements
  2971. status: dandi:OpenAccess
  2972. approach:
  2973. - name: behavioral approach
  2974. schemaKey: ApproachType
  2975. blobDateModified: '2023-04-03T12:09:00.249437-04:00'
  2976. contentSize: 11616728
  2977. contentUrl:
  2978. - https://api.dandiarchive.org/api/assets/2795ec8e-4043-4833-a6fd-0a8c905e0e17/download/
  2979. - https://dandiarchive-embargo.s3.amazonaws.com/000471/blobs/da7/c21/da7c2191-8f26-4177-a9d6-bb7fc17dd88b
  2980. dateModified: '2023-04-03T12:21:44.404641-04:00'
  2981. digest:
  2982. dandi:dandi-etag: 26675576003307425e3ddcd6bb987f18-1
  2983. dandi:sha2-256: da6968e85b0cb9f0fa2b512aefd2c1d4922799dfaa07d4e27ec009122dd0a6dc
  2984. encodingFormat: application/x-nwb
  2985. id: dandiasset:2795ec8e-4043-4833-a6fd-0a8c905e0e17
  2986. identifier: 2795ec8e-4043-4833-a6fd-0a8c905e0e17
  2987. measurementTechnique:
  2988. - name: behavioral technique
  2989. schemaKey: MeasurementTechniqueType
  2990. - name: analytical technique
  2991. schemaKey: MeasurementTechniqueType
  2992. path: sub-f#0681/sub-f#0681_ses-20180209T155205_behavior.nwb
  2993. schemaKey: Asset
  2994. schemaVersion: 0.6.4
  2995. variableMeasured:
  2996. - schemaKey: PropertyValue
  2997. value: BehavioralTimeSeries
  2998. - schemaKey: PropertyValue
  2999. value: ProcessingModule
  3000. wasAttributedTo:
  3001. - age:
  3002. schemaKey: PropertyValue
  3003. unitText: ISO-8601 duration
  3004. value: P4D
  3005. valueReference:
  3006. schemaKey: PropertyValue
  3007. value: dandi:BirthReference
  3008. genotype: Kir / MB131B
  3009. identifier: f#0681
  3010. schemaKey: Participant
  3011. sex:
  3012. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  3013. name: Female
  3014. schemaKey: SexType
  3015. species:
  3016. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7227
  3017. name: Drosophila melanogaster - Fruit fly
  3018. schemaKey: SpeciesType
  3019. wasGeneratedBy:
  3020. - description: find neurons involved in visual learning in an appetitive conditioning
  3021. paradigm
  3022. name: Acquisition session
  3023. schemaKey: Session
  3024. startDate: '2018-02-09T15:52:05-05:00'
  3025. - description: Metadata generated by DANDI cli
  3026. endDate: '2023-04-03T12:21:44.404632-04:00'
  3027. id: urn:uuid:f5cabb0f-1b1f-486e-a548-79a9f8c13ade
  3028. name: Metadata generation
  3029. schemaKey: Activity
  3030. startDate: '2023-04-03T12:21:44.389934-04: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.51.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: behavioral approach
  3043. schemaKey: ApproachType
  3044. blobDateModified: '2023-04-03T12:08:43.267342-04:00'
  3045. contentSize: 11613144
  3046. contentUrl:
  3047. - https://api.dandiarchive.org/api/assets/83366315-6f63-4efa-8212-b7be60d040c3/download/
  3048. - https://dandiarchive-embargo.s3.amazonaws.com/000471/blobs/d5a/7ac/d5a7acbb-cbaf-45ef-9e80-1d71c763c86e
  3049. dateModified: '2023-04-03T12:21:48.062399-04:00'
  3050. digest:
  3051. dandi:dandi-etag: d97fa7c7a3989ae21b670d6bfab1f780-1
  3052. dandi:sha2-256: c2a910502ce2fb913471e35dd8ee016fba6106d54a1adff546a18105019e06db
  3053. encodingFormat: application/x-nwb
  3054. id: dandiasset:83366315-6f63-4efa-8212-b7be60d040c3
  3055. identifier: 83366315-6f63-4efa-8212-b7be60d040c3
  3056. measurementTechnique:
  3057. - name: behavioral technique
  3058. schemaKey: MeasurementTechniqueType
  3059. - name: analytical technique
  3060. schemaKey: MeasurementTechniqueType
  3061. path: sub-f#0616/sub-f#0616_ses-20170907T192418_behavior.nwb
  3062. schemaKey: Asset
  3063. schemaVersion: 0.6.4
  3064. variableMeasured:
  3065. - schemaKey: PropertyValue
  3066. value: BehavioralTimeSeries
  3067. - schemaKey: PropertyValue
  3068. value: ProcessingModule
  3069. wasAttributedTo:
  3070. - age:
  3071. schemaKey: PropertyValue
  3072. unitText: ISO-8601 duration
  3073. value: P4D
  3074. valueReference:
  3075. schemaKey: PropertyValue
  3076. value: dandi:BirthReference
  3077. genotype: Kir / MB417B
  3078. identifier: f#0616
  3079. schemaKey: Participant
  3080. sex:
  3081. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  3082. name: Female
  3083. schemaKey: SexType
  3084. species:
  3085. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7227
  3086. name: Drosophila melanogaster - Fruit fly
  3087. schemaKey: SpeciesType
  3088. wasGeneratedBy:
  3089. - description: find neurons involved in visual learning in an appetitive conditioning
  3090. paradigm
  3091. name: Acquisition session
  3092. schemaKey: Session
  3093. startDate: '2017-09-07T19:24:18-04:00'
  3094. - description: Metadata generated by DANDI cli
  3095. endDate: '2023-04-03T12:21:48.062392-04:00'
  3096. id: urn:uuid:40b535cf-c80e-4c87-911f-517ba2603b7c
  3097. name: Metadata generation
  3098. schemaKey: Activity
  3099. startDate: '2023-04-03T12:21:48.061720-04:00'
  3100. wasAssociatedWith:
  3101. - identifier: RRID:SCR_019009
  3102. name: DANDI Command Line Interface
  3103. schemaKey: Software
  3104. url: https://github.com/dandi/dandi-cli
  3105. version: 0.51.0
  3106. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  3107. access:
  3108. - schemaKey: AccessRequirements
  3109. status: dandi:OpenAccess
  3110. approach:
  3111. - name: behavioral approach
  3112. schemaKey: ApproachType
  3113. blobDateModified: '2023-04-03T12:09:18.098845-04:00'
  3114. contentSize: 7636248
  3115. contentUrl:
  3116. - https://api.dandiarchive.org/api/assets/ce455b93-b60f-4187-9190-4db05913f329/download/
  3117. - https://dandiarchive-embargo.s3.amazonaws.com/000471/blobs/dc3/808/dc380894-42e3-46fd-bb9f-0264f4122e57
  3118. dateModified: '2023-04-03T12:21:47.206684-04:00'
  3119. digest:
  3120. dandi:dandi-etag: 7a89af996b8b41b6b9c332ea5495be78-1
  3121. dandi:sha2-256: 4c8c44a9b5debce274c61fb3d4323054271c5a175e99a2026f54ea4a74f703f8
  3122. encodingFormat: application/x-nwb
  3123. id: dandiasset:ce455b93-b60f-4187-9190-4db05913f329
  3124. identifier: ce455b93-b60f-4187-9190-4db05913f329
  3125. measurementTechnique:
  3126. - name: behavioral technique
  3127. schemaKey: MeasurementTechniqueType
  3128. - name: analytical technique
  3129. schemaKey: MeasurementTechniqueType
  3130. path: sub-f#0816/sub-f#0816_ses-20190405T195007_behavior.nwb
  3131. schemaKey: Asset
  3132. schemaVersion: 0.6.4
  3133. variableMeasured:
  3134. - schemaKey: PropertyValue
  3135. value: BehavioralTimeSeries
  3136. - schemaKey: PropertyValue
  3137. value: ProcessingModule
  3138. wasAttributedTo:
  3139. - age:
  3140. schemaKey: PropertyValue
  3141. unitText: ISO-8601 duration
  3142. value: P4D
  3143. valueReference:
  3144. schemaKey: PropertyValue
  3145. value: dandi:BirthReference
  3146. genotype: Kir / MB131B
  3147. identifier: f#0816
  3148. schemaKey: Participant
  3149. sex:
  3150. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  3151. name: Female
  3152. schemaKey: SexType
  3153. species:
  3154. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7227
  3155. name: Drosophila melanogaster - Fruit fly
  3156. schemaKey: SpeciesType
  3157. wasGeneratedBy:
  3158. - description: find neurons involved in visual learning in an appetitive conditioning
  3159. paradigm
  3160. name: Acquisition session
  3161. schemaKey: Session
  3162. startDate: '2019-04-05T19:50:07-04:00'
  3163. - description: Metadata generated by DANDI cli
  3164. endDate: '2023-04-03T12:21:47.206676-04:00'
  3165. id: urn:uuid:b32a2c74-a0c1-49ba-8a0d-4febc8b17cf7
  3166. name: Metadata generation
  3167. schemaKey: Activity
  3168. startDate: '2023-04-03T12:21:47.205993-04:00'
  3169. wasAssociatedWith:
  3170. - identifier: RRID:SCR_019009
  3171. name: DANDI Command Line Interface
  3172. schemaKey: Software
  3173. url: https://github.com/dandi/dandi-cli
  3174. version: 0.51.0
  3175. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  3176. access:
  3177. - schemaKey: AccessRequirements
  3178. status: dandi:OpenAccess
  3179. approach:
  3180. - name: behavioral approach
  3181. schemaKey: ApproachType
  3182. blobDateModified: '2023-04-03T12:08:56.133258-04:00'
  3183. contentSize: 11613080
  3184. contentUrl:
  3185. - https://api.dandiarchive.org/api/assets/2a922498-6634-4a19-b354-9753115520b7/download/
  3186. - https://dandiarchive-embargo.s3.amazonaws.com/000471/blobs/3cc/a5f/3cca5f12-c023-47a5-ac56-fb2eb83033fa
  3187. dateModified: '2023-04-03T12:21:46.778170-04:00'
  3188. digest:
  3189. dandi:dandi-etag: 4f42811f9ac7e8925bb9d066761e8f48-1
  3190. dandi:sha2-256: 6b26421132b24bafd1401fc146a0de8c02cc2eaa0261b533d04792cc764f8886
  3191. encodingFormat: application/x-nwb
  3192. id: dandiasset:2a922498-6634-4a19-b354-9753115520b7
  3193. identifier: 2a922498-6634-4a19-b354-9753115520b7
  3194. measurementTechnique:
  3195. - name: behavioral technique
  3196. schemaKey: MeasurementTechniqueType
  3197. - name: analytical technique
  3198. schemaKey: MeasurementTechniqueType
  3199. path: sub-f#0672/sub-f#0672_ses-20180206T181142_behavior.nwb
  3200. schemaKey: Asset
  3201. schemaVersion: 0.6.4
  3202. variableMeasured:
  3203. - schemaKey: PropertyValue
  3204. value: BehavioralTimeSeries
  3205. - schemaKey: PropertyValue
  3206. value: ProcessingModule
  3207. wasAttributedTo:
  3208. - age:
  3209. schemaKey: PropertyValue
  3210. unitText: ISO-8601 duration
  3211. value: P4D
  3212. valueReference:
  3213. schemaKey: PropertyValue
  3214. value: dandi:BirthReference
  3215. genotype: Kir / MB417B
  3216. identifier: f#0672
  3217. schemaKey: Participant
  3218. sex:
  3219. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  3220. name: Female
  3221. schemaKey: SexType
  3222. species:
  3223. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7227
  3224. name: Drosophila melanogaster - Fruit fly
  3225. schemaKey: SpeciesType
  3226. wasGeneratedBy:
  3227. - description: find neurons involved in visual learning in an appetitive conditioning
  3228. paradigm
  3229. name: Acquisition session
  3230. schemaKey: Session
  3231. startDate: '2018-02-06T18:11:42-05:00'
  3232. - description: Metadata generated by DANDI cli
  3233. endDate: '2023-04-03T12:21:46.778162-04:00'
  3234. id: urn:uuid:56807477-cec8-42d9-a39d-d4b900402e57
  3235. name: Metadata generation
  3236. schemaKey: Activity
  3237. startDate: '2023-04-03T12:21:46.777416-04:00'
  3238. wasAssociatedWith:
  3239. - identifier: RRID:SCR_019009
  3240. name: DANDI Command Line Interface
  3241. schemaKey: Software
  3242. url: https://github.com/dandi/dandi-cli
  3243. version: 0.51.0
  3244. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  3245. access:
  3246. - schemaKey: AccessRequirements
  3247. status: dandi:OpenAccess
  3248. approach:
  3249. - name: behavioral approach
  3250. schemaKey: ApproachType
  3251. blobDateModified: '2023-04-03T12:09:02.995299-04:00'
  3252. contentSize: 11613080
  3253. contentUrl:
  3254. - https://api.dandiarchive.org/api/assets/5a198d2c-147d-4a9a-9a09-188667da5e07/download/
  3255. - https://dandiarchive-embargo.s3.amazonaws.com/000471/blobs/47b/d2b/47bd2b42-ada4-434a-82d4-715c8e2bb2ea
  3256. dateModified: '2023-04-03T12:21:47.602798-04:00'
  3257. digest:
  3258. dandi:dandi-etag: 976893433bbb9312431846c33b6b3042-1
  3259. dandi:sha2-256: e6cce2a9733e3a71a03901ac30287fe9c903ab5c33bd393c9b1e0edb318d5a92
  3260. encodingFormat: application/x-nwb
  3261. id: dandiasset:5a198d2c-147d-4a9a-9a09-188667da5e07
  3262. identifier: 5a198d2c-147d-4a9a-9a09-188667da5e07
  3263. measurementTechnique:
  3264. - name: behavioral technique
  3265. schemaKey: MeasurementTechniqueType
  3266. - name: analytical technique
  3267. schemaKey: MeasurementTechniqueType
  3268. path: sub-f#0688/sub-f#0688_ses-20180212T164635_behavior.nwb
  3269. schemaKey: Asset
  3270. schemaVersion: 0.6.4
  3271. variableMeasured:
  3272. - schemaKey: PropertyValue
  3273. value: BehavioralTimeSeries
  3274. - schemaKey: PropertyValue
  3275. value: ProcessingModule
  3276. wasAttributedTo:
  3277. - age:
  3278. schemaKey: PropertyValue
  3279. unitText: ISO-8601 duration
  3280. value: P4D
  3281. valueReference:
  3282. schemaKey: PropertyValue
  3283. value: dandi:BirthReference
  3284. genotype: Kir / MB607B
  3285. identifier: f#0688
  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_7227
  3293. name: Drosophila melanogaster - Fruit fly
  3294. schemaKey: SpeciesType
  3295. wasGeneratedBy:
  3296. - description: find neurons involved in visual learning in an appetitive conditioning
  3297. paradigm
  3298. name: Acquisition session
  3299. schemaKey: Session
  3300. startDate: '2018-02-12T16:46:35-05:00'
  3301. - description: Metadata generated by DANDI cli
  3302. endDate: '2023-04-03T12:21:47.602787-04:00'
  3303. id: urn:uuid:2b3a44cf-35d4-4c6a-a79a-95b67d67c8b8
  3304. name: Metadata generation
  3305. schemaKey: Activity
  3306. startDate: '2023-04-03T12:21:47.601934-04: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.51.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: behavioral approach
  3319. schemaKey: ApproachType
  3320. blobDateModified: '2023-04-03T12:09:20.675262-04:00'
  3321. contentSize: 7636248
  3322. contentUrl:
  3323. - https://api.dandiarchive.org/api/assets/2d20a11f-c529-4112-a8e1-e2b68fb683ba/download/
  3324. - https://dandiarchive-embargo.s3.amazonaws.com/000471/blobs/96e/fc7/96efc774-5152-4e69-a943-1d3346081420
  3325. dateModified: '2023-04-03T12:21:48.950505-04:00'
  3326. digest:
  3327. dandi:dandi-etag: e909952b8eb861bc9299d5a02a3254db-1
  3328. dandi:sha2-256: 38a6aaedd05aa5b265da55f42775cae4f9958231901fa75365dc2faaaba478d0
  3329. encodingFormat: application/x-nwb
  3330. id: dandiasset:2d20a11f-c529-4112-a8e1-e2b68fb683ba
  3331. identifier: 2d20a11f-c529-4112-a8e1-e2b68fb683ba
  3332. measurementTechnique:
  3333. - name: behavioral technique
  3334. schemaKey: MeasurementTechniqueType
  3335. - name: analytical technique
  3336. schemaKey: MeasurementTechniqueType
  3337. path: sub-f#0828/sub-f#0828_ses-20190416T220838_behavior.nwb
  3338. schemaKey: Asset
  3339. schemaVersion: 0.6.4
  3340. variableMeasured:
  3341. - schemaKey: PropertyValue
  3342. value: BehavioralTimeSeries
  3343. - schemaKey: PropertyValue
  3344. value: ProcessingModule
  3345. wasAttributedTo:
  3346. - age:
  3347. schemaKey: PropertyValue
  3348. unitText: ISO-8601 duration
  3349. value: P4D
  3350. valueReference:
  3351. schemaKey: PropertyValue
  3352. value: dandi:BirthReference
  3353. genotype: Kir / MB607B
  3354. identifier: f#0828
  3355. schemaKey: Participant
  3356. sex:
  3357. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  3358. name: Female
  3359. schemaKey: SexType
  3360. species:
  3361. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7227
  3362. name: Drosophila melanogaster - Fruit fly
  3363. schemaKey: SpeciesType
  3364. wasGeneratedBy:
  3365. - description: find neurons involved in visual learning in an appetitive conditioning
  3366. paradigm
  3367. name: Acquisition session
  3368. schemaKey: Session
  3369. startDate: '2019-04-16T22:08:38-04:00'
  3370. - description: Metadata generated by DANDI cli
  3371. endDate: '2023-04-03T12:21:48.950497-04:00'
  3372. id: urn:uuid:b06661ff-8062-4f21-a52c-db2baa06f87c
  3373. name: Metadata generation
  3374. schemaKey: Activity
  3375. startDate: '2023-04-03T12:21:48.949819-04:00'
  3376. wasAssociatedWith:
  3377. - identifier: RRID:SCR_019009
  3378. name: DANDI Command Line Interface
  3379. schemaKey: Software
  3380. url: https://github.com/dandi/dandi-cli
  3381. version: 0.51.0
  3382. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  3383. access:
  3384. - schemaKey: AccessRequirements
  3385. status: dandi:OpenAccess
  3386. approach:
  3387. - name: behavioral approach
  3388. schemaKey: ApproachType
  3389. blobDateModified: '2023-04-03T12:09:18.738487-04:00'
  3390. contentSize: 7632792
  3391. contentUrl:
  3392. - https://api.dandiarchive.org/api/assets/eb070f9b-ef1a-44db-94bf-12fbfc54d7a2/download/
  3393. - https://dandiarchive-embargo.s3.amazonaws.com/000471/blobs/fa5/edb/fa5edbbf-0c33-41b9-a1b2-500d41f53034
  3394. dateModified: '2023-04-03T12:21:51.921170-04:00'
  3395. digest:
  3396. dandi:dandi-etag: d5aeef3737f99c1a603f21354e8054d7-1
  3397. dandi:sha2-256: f3fc7bd2d880e5c5ec811c1e84f15d72f0ad691940dac5343b08026e72e56ede
  3398. encodingFormat: application/x-nwb
  3399. id: dandiasset:eb070f9b-ef1a-44db-94bf-12fbfc54d7a2
  3400. identifier: eb070f9b-ef1a-44db-94bf-12fbfc54d7a2
  3401. measurementTechnique:
  3402. - name: behavioral technique
  3403. schemaKey: MeasurementTechniqueType
  3404. - name: analytical technique
  3405. schemaKey: MeasurementTechniqueType
  3406. path: sub-f#0821/sub-f#0821_ses-20190410T204713_behavior.nwb
  3407. schemaKey: Asset
  3408. schemaVersion: 0.6.4
  3409. variableMeasured:
  3410. - schemaKey: PropertyValue
  3411. value: BehavioralTimeSeries
  3412. - schemaKey: PropertyValue
  3413. value: ProcessingModule
  3414. wasAttributedTo:
  3415. - age:
  3416. schemaKey: PropertyValue
  3417. unitText: ISO-8601 duration
  3418. value: P4D
  3419. valueReference:
  3420. schemaKey: PropertyValue
  3421. value: dandi:BirthReference
  3422. genotype: Kir / MB607B
  3423. identifier: f#0821
  3424. schemaKey: Participant
  3425. sex:
  3426. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  3427. name: Female
  3428. schemaKey: SexType
  3429. species:
  3430. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7227
  3431. name: Drosophila melanogaster - Fruit fly
  3432. schemaKey: SpeciesType
  3433. wasGeneratedBy:
  3434. - description: find neurons involved in visual learning in an appetitive conditioning
  3435. paradigm
  3436. name: Acquisition session
  3437. schemaKey: Session
  3438. startDate: '2019-04-10T20:47:13-04:00'
  3439. - description: Metadata generated by DANDI cli
  3440. endDate: '2023-04-03T12:21:51.921162-04:00'
  3441. id: urn:uuid:2717c518-f8c4-4982-8714-57021d0d7cbf
  3442. name: Metadata generation
  3443. schemaKey: Activity
  3444. startDate: '2023-04-03T12:21:51.920482-04:00'
  3445. wasAssociatedWith:
  3446. - identifier: RRID:SCR_019009
  3447. name: DANDI Command Line Interface
  3448. schemaKey: Software
  3449. url: https://github.com/dandi/dandi-cli
  3450. version: 0.51.0
  3451. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  3452. access:
  3453. - schemaKey: AccessRequirements
  3454. status: dandi:OpenAccess
  3455. approach:
  3456. - name: behavioral approach
  3457. schemaKey: ApproachType
  3458. blobDateModified: '2023-04-03T12:08:44.675776-04:00'
  3459. contentSize: 11613080
  3460. contentUrl:
  3461. - https://api.dandiarchive.org/api/assets/b8116ad4-b21a-4f37-a3cc-3f9dc44857f9/download/
  3462. - https://dandiarchive-embargo.s3.amazonaws.com/000471/blobs/a7b/335/a7b3350d-e8f2-42f8-877e-4bf8482f36c9
  3463. dateModified: '2023-04-03T12:21:49.488925-04:00'
  3464. digest:
  3465. dandi:dandi-etag: e042856be756f2beaf8cf55ab86d1cf6-1
  3466. dandi:sha2-256: 9d8a85f485fe3be289765ff2ed0a573785ff3ca6a01106e2aff7054c8a5dcf7a
  3467. encodingFormat: application/x-nwb
  3468. id: dandiasset:b8116ad4-b21a-4f37-a3cc-3f9dc44857f9
  3469. identifier: b8116ad4-b21a-4f37-a3cc-3f9dc44857f9
  3470. measurementTechnique:
  3471. - name: behavioral technique
  3472. schemaKey: MeasurementTechniqueType
  3473. - name: analytical technique
  3474. schemaKey: MeasurementTechniqueType
  3475. path: sub-f#0645/sub-f#0645_ses-20171121T185948_behavior.nwb
  3476. schemaKey: Asset
  3477. schemaVersion: 0.6.4
  3478. variableMeasured:
  3479. - schemaKey: PropertyValue
  3480. value: BehavioralTimeSeries
  3481. - schemaKey: PropertyValue
  3482. value: ProcessingModule
  3483. wasAttributedTo:
  3484. - age:
  3485. schemaKey: PropertyValue
  3486. unitText: ISO-8601 duration
  3487. value: P4D
  3488. valueReference:
  3489. schemaKey: PropertyValue
  3490. value: dandi:BirthReference
  3491. genotype: Kir / MB008B
  3492. identifier: f#0645
  3493. schemaKey: Participant
  3494. sex:
  3495. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  3496. name: Female
  3497. schemaKey: SexType
  3498. species:
  3499. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7227
  3500. name: Drosophila melanogaster - Fruit fly
  3501. schemaKey: SpeciesType
  3502. wasGeneratedBy:
  3503. - description: find neurons involved in visual learning in an appetitive conditioning
  3504. paradigm
  3505. name: Acquisition session
  3506. schemaKey: Session
  3507. startDate: '2017-11-21T18:59:48-05:00'
  3508. - description: Metadata generated by DANDI cli
  3509. endDate: '2023-04-03T12:21:49.488917-04:00'
  3510. id: urn:uuid:adc63fe4-8d57-4cc9-a6fc-77b572af71b0
  3511. name: Metadata generation
  3512. schemaKey: Activity
  3513. startDate: '2023-04-03T12:21:49.488197-04:00'
  3514. wasAssociatedWith:
  3515. - identifier: RRID:SCR_019009
  3516. name: DANDI Command Line Interface
  3517. schemaKey: Software
  3518. url: https://github.com/dandi/dandi-cli
  3519. version: 0.51.0
  3520. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  3521. access:
  3522. - schemaKey: AccessRequirements
  3523. status: dandi:OpenAccess
  3524. approach:
  3525. - name: behavioral approach
  3526. schemaKey: ApproachType
  3527. blobDateModified: '2023-04-03T12:08:56.825946-04:00'
  3528. contentSize: 11617368
  3529. contentUrl:
  3530. - https://api.dandiarchive.org/api/assets/254c5307-97e2-4710-afa2-a19dbd35e5e1/download/
  3531. - https://dandiarchive-embargo.s3.amazonaws.com/000471/blobs/a84/04f/a8404fec-9803-47eb-814b-09cd61552aa5
  3532. dateModified: '2023-04-03T12:21:51.290623-04:00'
  3533. digest:
  3534. dandi:dandi-etag: 648a881dbdcaebfcddd8819250562c3c-1
  3535. dandi:sha2-256: b7c165651d1c361a42ef26200c6abcf653d0579ea825dd9a65a0227d40cd57dd
  3536. encodingFormat: application/x-nwb
  3537. id: dandiasset:254c5307-97e2-4710-afa2-a19dbd35e5e1
  3538. identifier: 254c5307-97e2-4710-afa2-a19dbd35e5e1
  3539. measurementTechnique:
  3540. - name: behavioral technique
  3541. schemaKey: MeasurementTechniqueType
  3542. - name: analytical technique
  3543. schemaKey: MeasurementTechniqueType
  3544. path: sub-f#0673/sub-f#0673_ses-20180206T182613_behavior.nwb
  3545. schemaKey: Asset
  3546. schemaVersion: 0.6.4
  3547. variableMeasured:
  3548. - schemaKey: PropertyValue
  3549. value: BehavioralTimeSeries
  3550. - schemaKey: PropertyValue
  3551. value: ProcessingModule
  3552. wasAttributedTo:
  3553. - age:
  3554. schemaKey: PropertyValue
  3555. unitText: ISO-8601 duration
  3556. value: P4D
  3557. valueReference:
  3558. schemaKey: PropertyValue
  3559. value: dandi:BirthReference
  3560. genotype: Kir / MB607B
  3561. identifier: f#0673
  3562. schemaKey: Participant
  3563. sex:
  3564. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  3565. name: Female
  3566. schemaKey: SexType
  3567. species:
  3568. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7227
  3569. name: Drosophila melanogaster - Fruit fly
  3570. schemaKey: SpeciesType
  3571. wasGeneratedBy:
  3572. - description: find neurons involved in visual learning in an appetitive conditioning
  3573. paradigm
  3574. name: Acquisition session
  3575. schemaKey: Session
  3576. startDate: '2018-02-06T18:26:13-05:00'
  3577. - description: Metadata generated by DANDI cli
  3578. endDate: '2023-04-03T12:21:51.290616-04:00'
  3579. id: urn:uuid:120c0cf8-5edf-45b8-ac0e-bf508612ce1f
  3580. name: Metadata generation
  3581. schemaKey: Activity
  3582. startDate: '2023-04-03T12:21:51.289911-04:00'
  3583. wasAssociatedWith:
  3584. - identifier: RRID:SCR_019009
  3585. name: DANDI Command Line Interface
  3586. schemaKey: Software
  3587. url: https://github.com/dandi/dandi-cli
  3588. version: 0.51.0
  3589. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  3590. access:
  3591. - schemaKey: AccessRequirements
  3592. status: dandi:OpenAccess
  3593. approach:
  3594. - name: behavioral approach
  3595. schemaKey: ApproachType
  3596. blobDateModified: '2023-04-03T12:08:59.558615-04:00'
  3597. contentSize: 11613080
  3598. contentUrl:
  3599. - https://api.dandiarchive.org/api/assets/4a98bcda-d426-4264-850b-93a216ba12b3/download/
  3600. - https://dandiarchive-embargo.s3.amazonaws.com/000471/blobs/b46/d74/b46d7410-9dc3-4381-b37b-aca4c4998022
  3601. dateModified: '2023-04-03T12:21:51.373461-04:00'
  3602. digest:
  3603. dandi:dandi-etag: 9039d2444f95262dc67cd6e9869abacf-1
  3604. dandi:sha2-256: 1878c52318a0d0cad0851cf1a09c5be19fd02e0d445925361868747ad7b46c8d
  3605. encodingFormat: application/x-nwb
  3606. id: dandiasset:4a98bcda-d426-4264-850b-93a216ba12b3
  3607. identifier: 4a98bcda-d426-4264-850b-93a216ba12b3
  3608. measurementTechnique:
  3609. - name: behavioral technique
  3610. schemaKey: MeasurementTechniqueType
  3611. - name: analytical technique
  3612. schemaKey: MeasurementTechniqueType
  3613. path: sub-f#0680/sub-f#0680_ses-20180209T154116_behavior.nwb
  3614. schemaKey: Asset
  3615. schemaVersion: 0.6.4
  3616. variableMeasured:
  3617. - schemaKey: PropertyValue
  3618. value: BehavioralTimeSeries
  3619. - schemaKey: PropertyValue
  3620. value: ProcessingModule
  3621. wasAttributedTo:
  3622. - age:
  3623. schemaKey: PropertyValue
  3624. unitText: ISO-8601 duration
  3625. value: P4D
  3626. valueReference:
  3627. schemaKey: PropertyValue
  3628. value: dandi:BirthReference
  3629. genotype: Kir / MB417B
  3630. identifier: f#0680
  3631. schemaKey: Participant
  3632. sex:
  3633. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  3634. name: Female
  3635. schemaKey: SexType
  3636. species:
  3637. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7227
  3638. name: Drosophila melanogaster - Fruit fly
  3639. schemaKey: SpeciesType
  3640. wasGeneratedBy:
  3641. - description: find neurons involved in visual learning in an appetitive conditioning
  3642. paradigm
  3643. name: Acquisition session
  3644. schemaKey: Session
  3645. startDate: '2018-02-09T15:41:16-05:00'
  3646. - description: Metadata generated by DANDI cli
  3647. endDate: '2023-04-03T12:21:51.373454-04:00'
  3648. id: urn:uuid:647e544b-349f-4a35-bb0d-cd3f68639561
  3649. name: Metadata generation
  3650. schemaKey: Activity
  3651. startDate: '2023-04-03T12:21:51.372833-04:00'
  3652. wasAssociatedWith:
  3653. - identifier: RRID:SCR_019009
  3654. name: DANDI Command Line Interface
  3655. schemaKey: Software
  3656. url: https://github.com/dandi/dandi-cli
  3657. version: 0.51.0
  3658. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  3659. access:
  3660. - schemaKey: AccessRequirements
  3661. status: dandi:OpenAccess
  3662. approach:
  3663. - name: behavioral approach
  3664. schemaKey: ApproachType
  3665. blobDateModified: '2023-04-03T12:09:04.965594-04:00'
  3666. contentSize: 11616216
  3667. contentUrl:
  3668. - https://api.dandiarchive.org/api/assets/1c8474d4-92f2-49d8-b4f3-e3da026cb12b/download/
  3669. - https://dandiarchive-embargo.s3.amazonaws.com/000471/blobs/a31/81f/a3181fff-cf56-4738-9eac-78e93f73c2f1
  3670. dateModified: '2023-04-03T12:21:52.616409-04:00'
  3671. digest:
  3672. dandi:dandi-etag: cb2226d26a60cdf1867714b918b3079f-1
  3673. dandi:sha2-256: 3f092c2177738a8b7dea8bde8a7318a6515de87b8c8edda83c3df023b4685b8d
  3674. encodingFormat: application/x-nwb
  3675. id: dandiasset:1c8474d4-92f2-49d8-b4f3-e3da026cb12b
  3676. identifier: 1c8474d4-92f2-49d8-b4f3-e3da026cb12b
  3677. measurementTechnique:
  3678. - name: behavioral technique
  3679. schemaKey: MeasurementTechniqueType
  3680. - name: analytical technique
  3681. schemaKey: MeasurementTechniqueType
  3682. path: sub-f#0730/sub-f#0730_ses-20180524T180852_behavior.nwb
  3683. schemaKey: Asset
  3684. schemaVersion: 0.6.4
  3685. variableMeasured:
  3686. - schemaKey: PropertyValue
  3687. value: BehavioralTimeSeries
  3688. - schemaKey: PropertyValue
  3689. value: ProcessingModule
  3690. wasAttributedTo:
  3691. - age:
  3692. schemaKey: PropertyValue
  3693. unitText: ISO-8601 duration
  3694. value: P4D
  3695. valueReference:
  3696. schemaKey: PropertyValue
  3697. value: dandi:BirthReference
  3698. genotype: Kir / MB607B
  3699. identifier: f#0730
  3700. schemaKey: Participant
  3701. sex:
  3702. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  3703. name: Female
  3704. schemaKey: SexType
  3705. species:
  3706. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7227
  3707. name: Drosophila melanogaster - Fruit fly
  3708. schemaKey: SpeciesType
  3709. wasGeneratedBy:
  3710. - description: find neurons involved in visual learning in an appetitive conditioning
  3711. paradigm
  3712. name: Acquisition session
  3713. schemaKey: Session
  3714. startDate: '2018-05-24T18:08:52-04:00'
  3715. - description: Metadata generated by DANDI cli
  3716. endDate: '2023-04-03T12:21:52.616399-04:00'
  3717. id: urn:uuid:daaea131-be78-4b20-9926-52bebf218e0e
  3718. name: Metadata generation
  3719. schemaKey: Activity
  3720. startDate: '2023-04-03T12:21:52.615512-04:00'
  3721. wasAssociatedWith:
  3722. - identifier: RRID:SCR_019009
  3723. name: DANDI Command Line Interface
  3724. schemaKey: Software
  3725. url: https://github.com/dandi/dandi-cli
  3726. version: 0.51.0
  3727. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  3728. access:
  3729. - schemaKey: AccessRequirements
  3730. status: dandi:OpenAccess
  3731. approach:
  3732. - name: behavioral approach
  3733. schemaKey: ApproachType
  3734. blobDateModified: '2023-04-03T12:09:12.221102-04:00'
  3735. contentSize: 7632728
  3736. contentUrl:
  3737. - https://api.dandiarchive.org/api/assets/23cd4764-f226-4393-9681-4b2aef2e6f23/download/
  3738. - https://dandiarchive-embargo.s3.amazonaws.com/000471/blobs/2f6/807/2f680756-dcc5-4504-8bfc-d1b42f8769f7
  3739. dateModified: '2023-04-03T12:21:53.449510-04:00'
  3740. digest:
  3741. dandi:dandi-etag: 72045938db35b7317178b181c2aee95d-1
  3742. dandi:sha2-256: 882c9c774c43ed610fc98206bbb7b95475439bef943a57f8c3f5078bec1b2dd5
  3743. encodingFormat: application/x-nwb
  3744. id: dandiasset:23cd4764-f226-4393-9681-4b2aef2e6f23
  3745. identifier: 23cd4764-f226-4393-9681-4b2aef2e6f23
  3746. measurementTechnique:
  3747. - name: behavioral technique
  3748. schemaKey: MeasurementTechniqueType
  3749. - name: analytical technique
  3750. schemaKey: MeasurementTechniqueType
  3751. path: sub-f#0790/sub-f#0790_ses-20190116T122622_behavior.nwb
  3752. schemaKey: Asset
  3753. schemaVersion: 0.6.4
  3754. variableMeasured:
  3755. - schemaKey: PropertyValue
  3756. value: BehavioralTimeSeries
  3757. - schemaKey: PropertyValue
  3758. value: ProcessingModule
  3759. wasAttributedTo:
  3760. - age:
  3761. schemaKey: PropertyValue
  3762. unitText: ISO-8601 duration
  3763. value: P4D
  3764. valueReference:
  3765. schemaKey: PropertyValue
  3766. value: dandi:BirthReference
  3767. genotype: Kir / MB008B
  3768. identifier: f#0790
  3769. schemaKey: Participant
  3770. sex:
  3771. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  3772. name: Female
  3773. schemaKey: SexType
  3774. species:
  3775. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7227
  3776. name: Drosophila melanogaster - Fruit fly
  3777. schemaKey: SpeciesType
  3778. wasGeneratedBy:
  3779. - description: find neurons involved in visual learning in an appetitive conditioning
  3780. paradigm
  3781. name: Acquisition session
  3782. schemaKey: Session
  3783. startDate: '2019-01-16T12:26:22-05:00'
  3784. - description: Metadata generated by DANDI cli
  3785. endDate: '2023-04-03T12:21:53.449502-04:00'
  3786. id: urn:uuid:bd222f46-9d8e-4b91-aaf1-f81d734e24df
  3787. name: Metadata generation
  3788. schemaKey: Activity
  3789. startDate: '2023-04-03T12:21:53.442241-04:00'
  3790. wasAssociatedWith:
  3791. - identifier: RRID:SCR_019009
  3792. name: DANDI Command Line Interface
  3793. schemaKey: Software
  3794. url: https://github.com/dandi/dandi-cli
  3795. version: 0.51.0
  3796. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  3797. access:
  3798. - schemaKey: AccessRequirements
  3799. status: dandi:OpenAccess
  3800. approach:
  3801. - name: behavioral approach
  3802. schemaKey: ApproachType
  3803. blobDateModified: '2023-04-03T12:09:14.875695-04:00'
  3804. contentSize: 7635928
  3805. contentUrl:
  3806. - https://api.dandiarchive.org/api/assets/49aa1658-9637-4162-ad7f-a54edc086a0e/download/
  3807. - https://dandiarchive-embargo.s3.amazonaws.com/000471/blobs/4bb/86b/4bb86be0-5e58-49aa-9aeb-5bc982fe1d5b
  3808. dateModified: '2023-04-03T12:21:53.716933-04:00'
  3809. digest:
  3810. dandi:dandi-etag: b932fb86c7c996eb47e7d5800bf2a390-1
  3811. dandi:sha2-256: 88a0ff9689f3529b75a003618c3eb3923e4f35f6b41bd4547a788ea651969956
  3812. encodingFormat: application/x-nwb
  3813. id: dandiasset:49aa1658-9637-4162-ad7f-a54edc086a0e
  3814. identifier: 49aa1658-9637-4162-ad7f-a54edc086a0e
  3815. measurementTechnique:
  3816. - name: behavioral technique
  3817. schemaKey: MeasurementTechniqueType
  3818. - name: analytical technique
  3819. schemaKey: MeasurementTechniqueType
  3820. path: sub-f#0797/sub-f#0797_ses-20190123T140052_behavior.nwb
  3821. schemaKey: Asset
  3822. schemaVersion: 0.6.4
  3823. variableMeasured:
  3824. - schemaKey: PropertyValue
  3825. value: BehavioralTimeSeries
  3826. - schemaKey: PropertyValue
  3827. value: ProcessingModule
  3828. wasAttributedTo:
  3829. - age:
  3830. schemaKey: PropertyValue
  3831. unitText: ISO-8601 duration
  3832. value: P4D
  3833. valueReference:
  3834. schemaKey: PropertyValue
  3835. value: dandi:BirthReference
  3836. genotype: Kir / MB417B
  3837. identifier: f#0797
  3838. schemaKey: Participant
  3839. sex:
  3840. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  3841. name: Female
  3842. schemaKey: SexType
  3843. species:
  3844. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7227
  3845. name: Drosophila melanogaster - Fruit fly
  3846. schemaKey: SpeciesType
  3847. wasGeneratedBy:
  3848. - description: find neurons involved in visual learning in an appetitive conditioning
  3849. paradigm
  3850. name: Acquisition session
  3851. schemaKey: Session
  3852. startDate: '2019-01-23T14:00:52-05:00'
  3853. - description: Metadata generated by DANDI cli
  3854. endDate: '2023-04-03T12:21:53.716923-04:00'
  3855. id: urn:uuid:48e39768-d30b-427d-b71f-e56513683d2d
  3856. name: Metadata generation
  3857. schemaKey: Activity
  3858. startDate: '2023-04-03T12:21:53.716236-04:00'
  3859. wasAssociatedWith:
  3860. - identifier: RRID:SCR_019009
  3861. name: DANDI Command Line Interface
  3862. schemaKey: Software
  3863. url: https://github.com/dandi/dandi-cli
  3864. version: 0.51.0
  3865. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  3866. access:
  3867. - schemaKey: AccessRequirements
  3868. status: dandi:OpenAccess
  3869. approach:
  3870. - name: behavioral approach
  3871. schemaKey: ApproachType
  3872. blobDateModified: '2023-04-03T12:09:15.526663-04:00'
  3873. contentSize: 7632856
  3874. contentUrl:
  3875. - https://api.dandiarchive.org/api/assets/b8d4082e-42c3-4ae0-82ed-21261ef9ddfa/download/
  3876. - https://dandiarchive-embargo.s3.amazonaws.com/000471/blobs/a9b/8f8/a9b8f860-63db-4310-a89c-2a6f720fbc94
  3877. dateModified: '2023-04-03T12:21:57.158221-04:00'
  3878. digest:
  3879. dandi:dandi-etag: dd6ea828a5470a8f063cfc2e21400c4b-1
  3880. dandi:sha2-256: a1055d20882f34e892ac4deee1c348cd0a78ca2eb889a8ac1bf4591e94a402c6
  3881. encodingFormat: application/x-nwb
  3882. id: dandiasset:b8d4082e-42c3-4ae0-82ed-21261ef9ddfa
  3883. identifier: b8d4082e-42c3-4ae0-82ed-21261ef9ddfa
  3884. measurementTechnique:
  3885. - name: behavioral technique
  3886. schemaKey: MeasurementTechniqueType
  3887. - name: analytical technique
  3888. schemaKey: MeasurementTechniqueType
  3889. path: sub-f#0798/sub-f#0798_ses-20190125T151102_behavior.nwb
  3890. schemaKey: Asset
  3891. schemaVersion: 0.6.4
  3892. variableMeasured:
  3893. - schemaKey: PropertyValue
  3894. value: BehavioralTimeSeries
  3895. - schemaKey: PropertyValue
  3896. value: ProcessingModule
  3897. wasAttributedTo:
  3898. - age:
  3899. schemaKey: PropertyValue
  3900. unitText: ISO-8601 duration
  3901. value: P4D
  3902. valueReference:
  3903. schemaKey: PropertyValue
  3904. value: dandi:BirthReference
  3905. genotype: Kir / MB417B
  3906. identifier: f#0798
  3907. schemaKey: Participant
  3908. sex:
  3909. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  3910. name: Female
  3911. schemaKey: SexType
  3912. species:
  3913. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7227
  3914. name: Drosophila melanogaster - Fruit fly
  3915. schemaKey: SpeciesType
  3916. wasGeneratedBy:
  3917. - description: find neurons involved in visual learning in an appetitive conditioning
  3918. paradigm
  3919. name: Acquisition session
  3920. schemaKey: Session
  3921. startDate: '2019-01-25T15:11:02-05:00'
  3922. - description: Metadata generated by DANDI cli
  3923. endDate: '2023-04-03T12:21:57.158212-04:00'
  3924. id: urn:uuid:0ae19ecd-34f1-43f3-b8f2-fbe0ffceef5a
  3925. name: Metadata generation
  3926. schemaKey: Activity
  3927. startDate: '2023-04-03T12:21:57.149324-04:00'
  3928. wasAssociatedWith:
  3929. - identifier: RRID:SCR_019009
  3930. name: DANDI Command Line Interface
  3931. schemaKey: Software
  3932. url: https://github.com/dandi/dandi-cli
  3933. version: 0.51.0
  3934. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  3935. access:
  3936. - schemaKey: AccessRequirements
  3937. status: dandi:OpenAccess
  3938. approach:
  3939. - name: behavioral approach
  3940. schemaKey: ApproachType
  3941. blobDateModified: '2023-04-03T12:09:16.168667-04:00'
  3942. contentSize: 7636696
  3943. contentUrl:
  3944. - https://api.dandiarchive.org/api/assets/f726fb92-535f-45d1-8727-c3720965fd2e/download/
  3945. - https://dandiarchive-embargo.s3.amazonaws.com/000471/blobs/28a/9c6/28a9c606-f714-49dd-baca-a5a3510bbdd9
  3946. dateModified: '2023-04-03T12:21:55.713317-04:00'
  3947. digest:
  3948. dandi:dandi-etag: 8b81f2cb926813c9c1051af3259c69f3-1
  3949. dandi:sha2-256: 7e010dff34117b5c5ae2c3b25a1628bcc4ae14483ac9b0a7a2ade5421929e75b
  3950. encodingFormat: application/x-nwb
  3951. id: dandiasset:f726fb92-535f-45d1-8727-c3720965fd2e
  3952. identifier: f726fb92-535f-45d1-8727-c3720965fd2e
  3953. measurementTechnique:
  3954. - name: behavioral technique
  3955. schemaKey: MeasurementTechniqueType
  3956. - name: analytical technique
  3957. schemaKey: MeasurementTechniqueType
  3958. path: sub-f#0799/sub-f#0799_ses-20190125T151532_behavior.nwb
  3959. schemaKey: Asset
  3960. schemaVersion: 0.6.4
  3961. variableMeasured:
  3962. - schemaKey: PropertyValue
  3963. value: BehavioralTimeSeries
  3964. - schemaKey: PropertyValue
  3965. value: ProcessingModule
  3966. wasAttributedTo:
  3967. - age:
  3968. schemaKey: PropertyValue
  3969. unitText: ISO-8601 duration
  3970. value: P4D
  3971. valueReference:
  3972. schemaKey: PropertyValue
  3973. value: dandi:BirthReference
  3974. genotype: Kir / MB131B
  3975. identifier: f#0799
  3976. schemaKey: Participant
  3977. sex:
  3978. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  3979. name: Female
  3980. schemaKey: SexType
  3981. species:
  3982. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7227
  3983. name: Drosophila melanogaster - Fruit fly
  3984. schemaKey: SpeciesType
  3985. wasGeneratedBy:
  3986. - description: find neurons involved in visual learning in an appetitive conditioning
  3987. paradigm
  3988. name: Acquisition session
  3989. schemaKey: Session
  3990. startDate: '2019-01-25T15:15:32-05:00'
  3991. - description: Metadata generated by DANDI cli
  3992. endDate: '2023-04-03T12:21:55.713309-04:00'
  3993. id: urn:uuid:682f308b-efc9-4bff-939c-4bf755135614
  3994. name: Metadata generation
  3995. schemaKey: Activity
  3996. startDate: '2023-04-03T12:21:55.712628-04:00'
  3997. wasAssociatedWith:
  3998. - identifier: RRID:SCR_019009
  3999. name: DANDI Command Line Interface
  4000. schemaKey: Software
  4001. url: https://github.com/dandi/dandi-cli
  4002. version: 0.51.0
  4003. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  4004. access:
  4005. - schemaKey: AccessRequirements
  4006. status: dandi:OpenAccess
  4007. approach:
  4008. - name: behavioral approach
  4009. schemaKey: ApproachType
  4010. blobDateModified: '2023-04-03T12:09:06.928258-04:00'
  4011. contentSize: 11617048
  4012. contentUrl:
  4013. - https://api.dandiarchive.org/api/assets/800fd7fa-c399-480d-90a6-9812e881e96f/download/
  4014. - https://dandiarchive-embargo.s3.amazonaws.com/000471/blobs/b92/549/b9254996-a527-40f9-9afa-d634944dfa1c
  4015. dateModified: '2023-04-03T12:21:55.807760-04:00'
  4016. digest:
  4017. dandi:dandi-etag: ac6aa979e8151362cc4ad6d6167e196a-1
  4018. dandi:sha2-256: f013b9690b86372964dc74c864f7603f60e4052bfe6611129d07dfa359a6fa9a
  4019. encodingFormat: application/x-nwb
  4020. id: dandiasset:800fd7fa-c399-480d-90a6-9812e881e96f
  4021. identifier: 800fd7fa-c399-480d-90a6-9812e881e96f
  4022. measurementTechnique:
  4023. - name: behavioral technique
  4024. schemaKey: MeasurementTechniqueType
  4025. - name: analytical technique
  4026. schemaKey: MeasurementTechniqueType
  4027. path: sub-f#0736/sub-f#0736_ses-20180528T205009_behavior.nwb
  4028. schemaKey: Asset
  4029. schemaVersion: 0.6.4
  4030. variableMeasured:
  4031. - schemaKey: PropertyValue
  4032. value: BehavioralTimeSeries
  4033. - schemaKey: PropertyValue
  4034. value: ProcessingModule
  4035. wasAttributedTo:
  4036. - age:
  4037. schemaKey: PropertyValue
  4038. unitText: ISO-8601 duration
  4039. value: P4D
  4040. valueReference:
  4041. schemaKey: PropertyValue
  4042. value: dandi:BirthReference
  4043. genotype: DL / MB607B
  4044. identifier: f#0736
  4045. schemaKey: Participant
  4046. sex:
  4047. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  4048. name: Female
  4049. schemaKey: SexType
  4050. species:
  4051. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7227
  4052. name: Drosophila melanogaster - Fruit fly
  4053. schemaKey: SpeciesType
  4054. wasGeneratedBy:
  4055. - description: find neurons involved in visual learning in an appetitive conditioning
  4056. paradigm
  4057. name: Acquisition session
  4058. schemaKey: Session
  4059. startDate: '2018-05-28T20:50:09-04:00'
  4060. - description: Metadata generated by DANDI cli
  4061. endDate: '2023-04-03T12:21:55.807753-04:00'
  4062. id: urn:uuid:4ff18062-80a1-4a60-97f6-f42fd4f77058
  4063. name: Metadata generation
  4064. schemaKey: Activity
  4065. startDate: '2023-04-03T12:21:55.807108-04:00'
  4066. wasAssociatedWith:
  4067. - identifier: RRID:SCR_019009
  4068. name: DANDI Command Line Interface
  4069. schemaKey: Software
  4070. url: https://github.com/dandi/dandi-cli
  4071. version: 0.51.0
  4072. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  4073. access:
  4074. - schemaKey: AccessRequirements
  4075. status: dandi:OpenAccess
  4076. approach:
  4077. - name: behavioral approach
  4078. schemaKey: ApproachType
  4079. blobDateModified: '2023-04-03T12:09:07.585916-04:00'
  4080. contentSize: 11617176
  4081. contentUrl:
  4082. - https://api.dandiarchive.org/api/assets/a563933c-1c32-42f7-b6ad-cfec1af24b9a/download/
  4083. - https://dandiarchive-embargo.s3.amazonaws.com/000471/blobs/efd/1a5/efd1a584-c9cb-469a-a323-95b5eef489c2
  4084. dateModified: '2023-04-03T12:21:56.762944-04:00'
  4085. digest:
  4086. dandi:dandi-etag: 30765d4224404e68504d86871ade3b83-1
  4087. dandi:sha2-256: 4a3b769700721c51111d5e7a4010e3ba229a92cdf6c7e5e3caa814d7a79a2a5e
  4088. encodingFormat: application/x-nwb
  4089. id: dandiasset:a563933c-1c32-42f7-b6ad-cfec1af24b9a
  4090. identifier: a563933c-1c32-42f7-b6ad-cfec1af24b9a
  4091. measurementTechnique:
  4092. - name: behavioral technique
  4093. schemaKey: MeasurementTechniqueType
  4094. - name: analytical technique
  4095. schemaKey: MeasurementTechniqueType
  4096. path: sub-f#0738/sub-f#0738_ses-20180529T193013_behavior.nwb
  4097. schemaKey: Asset
  4098. schemaVersion: 0.6.4
  4099. variableMeasured:
  4100. - schemaKey: PropertyValue
  4101. value: BehavioralTimeSeries
  4102. - schemaKey: PropertyValue
  4103. value: ProcessingModule
  4104. wasAttributedTo:
  4105. - age:
  4106. schemaKey: PropertyValue
  4107. unitText: ISO-8601 duration
  4108. value: P4D
  4109. valueReference:
  4110. schemaKey: PropertyValue
  4111. value: dandi:BirthReference
  4112. genotype: DL / MB607B
  4113. identifier: f#0738
  4114. schemaKey: Participant
  4115. sex:
  4116. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  4117. name: Female
  4118. schemaKey: SexType
  4119. species:
  4120. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7227
  4121. name: Drosophila melanogaster - Fruit fly
  4122. schemaKey: SpeciesType
  4123. wasGeneratedBy:
  4124. - description: find neurons involved in visual learning in an appetitive conditioning
  4125. paradigm
  4126. name: Acquisition session
  4127. schemaKey: Session
  4128. startDate: '2018-05-29T19:30:13-04:00'
  4129. - description: Metadata generated by DANDI cli
  4130. endDate: '2023-04-03T12:21:56.762933-04:00'
  4131. id: urn:uuid:b78c0944-5ec5-4e8a-8c37-3a196b6c2cc5
  4132. name: Metadata generation
  4133. schemaKey: Activity
  4134. startDate: '2023-04-03T12:21:56.762243-04:00'
  4135. wasAssociatedWith:
  4136. - identifier: RRID:SCR_019009
  4137. name: DANDI Command Line Interface
  4138. schemaKey: Software
  4139. url: https://github.com/dandi/dandi-cli
  4140. version: 0.51.0
  4141. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  4142. access:
  4143. - schemaKey: AccessRequirements
  4144. status: dandi:OpenAccess
  4145. approach:
  4146. - name: behavioral approach
  4147. schemaKey: ApproachType
  4148. blobDateModified: '2023-04-03T12:09:12.868313-04:00'
  4149. contentSize: 7636824
  4150. contentUrl:
  4151. - https://api.dandiarchive.org/api/assets/8c0751b6-6a13-4953-b1c1-a48253155335/download/
  4152. - https://dandiarchive-embargo.s3.amazonaws.com/000471/blobs/aac/15f/aac15fa7-0686-4678-863b-f60b86ac8089
  4153. dateModified: '2023-04-03T12:21:57.307880-04:00'
  4154. digest:
  4155. dandi:dandi-etag: c32cee4c8c6c28585d2368ffb6890b33-1
  4156. dandi:sha2-256: 9d8dd6bc43b9ec4e7856d656368453d6d65524363c3d0b365f89b23a6f4c593d
  4157. encodingFormat: application/x-nwb
  4158. id: dandiasset:8c0751b6-6a13-4953-b1c1-a48253155335
  4159. identifier: 8c0751b6-6a13-4953-b1c1-a48253155335
  4160. measurementTechnique:
  4161. - name: behavioral technique
  4162. schemaKey: MeasurementTechniqueType
  4163. - name: analytical technique
  4164. schemaKey: MeasurementTechniqueType
  4165. path: sub-f#0791/sub-f#0791_ses-20190116T123417_behavior.nwb
  4166. schemaKey: Asset
  4167. schemaVersion: 0.6.4
  4168. variableMeasured:
  4169. - schemaKey: PropertyValue
  4170. value: BehavioralTimeSeries
  4171. - schemaKey: PropertyValue
  4172. value: ProcessingModule
  4173. wasAttributedTo:
  4174. - age:
  4175. schemaKey: PropertyValue
  4176. unitText: ISO-8601 duration
  4177. value: P4D
  4178. valueReference:
  4179. schemaKey: PropertyValue
  4180. value: dandi:BirthReference
  4181. genotype: DL / MB607B
  4182. identifier: f#0791
  4183. schemaKey: Participant
  4184. sex:
  4185. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  4186. name: Female
  4187. schemaKey: SexType
  4188. species:
  4189. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7227
  4190. name: Drosophila melanogaster - Fruit fly
  4191. schemaKey: SpeciesType
  4192. wasGeneratedBy:
  4193. - description: find neurons involved in visual learning in an appetitive conditioning
  4194. paradigm
  4195. name: Acquisition session
  4196. schemaKey: Session
  4197. startDate: '2019-01-16T12:34:17-05:00'
  4198. - description: Metadata generated by DANDI cli
  4199. endDate: '2023-04-03T12:21:57.307869-04:00'
  4200. id: urn:uuid:86d640ec-c3b9-4f74-a6b5-e4a7f31a9e36
  4201. name: Metadata generation
  4202. schemaKey: Activity
  4203. startDate: '2023-04-03T12:21:57.306726-04:00'
  4204. wasAssociatedWith:
  4205. - identifier: RRID:SCR_019009
  4206. name: DANDI Command Line Interface
  4207. schemaKey: Software
  4208. url: https://github.com/dandi/dandi-cli
  4209. version: 0.51.0
Tip!

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

Comments

Loading...