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 89 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
  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-20T16:46:11.782179-04:00'
  9. contentSize: 35247182
  10. contentUrl:
  11. - https://api.dandiarchive.org/api/assets/5d31bed9-b65c-4b64-8a68-7c8d3fc057f6/download/
  12. - https://dandiarchive.s3.amazonaws.com/blobs/7ca/02c/7ca02c2e-b9af-4d98-b9c3-9284e4cd0db1
  13. dateModified: '2023-04-20T16:56:13.914937-04:00'
  14. digest:
  15. dandi:dandi-etag: 55cd93f911ca4089cb77c6b6b1bfb1f0-1
  16. dandi:sha2-256: 6f52e5f0c3a1b4e13cbe2f46ffbdb7accccf31040f3b578a0e4c3cf882f85fa9
  17. encodingFormat: application/x-nwb
  18. id: dandiasset:5d31bed9-b65c-4b64-8a68-7c8d3fc057f6
  19. identifier: 5d31bed9-b65c-4b64-8a68-7c8d3fc057f6
  20. measurementTechnique:
  21. - name: analytical technique
  22. schemaKey: MeasurementTechniqueType
  23. - name: behavioral technique
  24. schemaKey: MeasurementTechniqueType
  25. path: sub-Plaid-warm-01-nachet/sub-Plaid-warm-01-nachet_ses-20230213T132100_behavior.nwb
  26. schemaKey: Asset
  27. schemaVersion: 0.6.4
  28. variableMeasured:
  29. - schemaKey: PropertyValue
  30. value: SpatialSeries
  31. - schemaKey: PropertyValue
  32. value: Position
  33. - schemaKey: PropertyValue
  34. value: ProcessingModule
  35. - schemaKey: PropertyValue
  36. value: CompassDirection
  37. wasAttributedTo:
  38. - age:
  39. schemaKey: PropertyValue
  40. unitText: ISO-8601 duration
  41. value: P5DT48060S
  42. valueReference:
  43. schemaKey: PropertyValue
  44. value: dandi:BirthReference
  45. identifier: Plaid_warm_01_nachet
  46. schemaKey: Participant
  47. sex:
  48. name: Unknown
  49. schemaKey: SexType
  50. species:
  51. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  52. name: Danio rerio - Zebra fish
  53. schemaKey: SpeciesType
  54. wasGeneratedBy:
  55. - description: Thermal plaid experiment
  56. name: Acquisition session
  57. schemaKey: Session
  58. startDate: '2023-02-13T13:21:00-05:00'
  59. - description: Metadata generated by DANDI cli
  60. endDate: '2023-04-20T16:56:13.914937-04:00'
  61. id: urn:uuid:bbde98ce-fa6d-4001-8588-6e6601caf413
  62. name: Metadata generation
  63. schemaKey: Activity
  64. startDate: '2023-04-20T16:56:13.786067-04:00'
  65. wasAssociatedWith:
  66. - identifier: RRID:SCR_019009
  67. name: DANDI Command Line Interface
  68. schemaKey: Software
  69. url: https://github.com/dandi/dandi-cli
  70. version: 0.53.0
  71. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  72. access:
  73. - schemaKey: AccessRequirements
  74. status: dandi:OpenAccess
  75. approach:
  76. - name: behavioral approach
  77. schemaKey: ApproachType
  78. blobDateModified: '2023-04-20T16:46:47.875197-04:00'
  79. contentSize: 35074463
  80. contentUrl:
  81. - https://api.dandiarchive.org/api/assets/d9216cef-6a00-4445-bd6e-a210746f8b8d/download/
  82. - https://dandiarchive.s3.amazonaws.com/blobs/0c5/42a/0c542ab4-2a46-4b4a-9957-9716ef7e37a9
  83. dateModified: '2023-04-20T16:56:13.967508-04:00'
  84. digest:
  85. dandi:dandi-etag: 55fd9b7fdd669f0660fa14f881469e40-1
  86. dandi:sha2-256: 774ca9ab996e6fa524548a7891c82c5ab50f3487e4dc14ec5387cb587dc225f6
  87. encodingFormat: application/x-nwb
  88. id: dandiasset:d9216cef-6a00-4445-bd6e-a210746f8b8d
  89. identifier: d9216cef-6a00-4445-bd6e-a210746f8b8d
  90. measurementTechnique:
  91. - name: analytical technique
  92. schemaKey: MeasurementTechniqueType
  93. - name: behavioral technique
  94. schemaKey: MeasurementTechniqueType
  95. path: sub-Plaid-warm-04-nachet/sub-Plaid-warm-04-nachet_ses-20230214T134700_behavior.nwb
  96. schemaKey: Asset
  97. schemaVersion: 0.6.4
  98. variableMeasured:
  99. - schemaKey: PropertyValue
  100. value: SpatialSeries
  101. - schemaKey: PropertyValue
  102. value: Position
  103. - schemaKey: PropertyValue
  104. value: ProcessingModule
  105. - schemaKey: PropertyValue
  106. value: CompassDirection
  107. wasAttributedTo:
  108. - age:
  109. schemaKey: PropertyValue
  110. unitText: ISO-8601 duration
  111. value: P7DT49620S
  112. valueReference:
  113. schemaKey: PropertyValue
  114. value: dandi:BirthReference
  115. identifier: Plaid_warm_04_nachet
  116. schemaKey: Participant
  117. sex:
  118. name: Unknown
  119. schemaKey: SexType
  120. species:
  121. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  122. name: Danio rerio - Zebra fish
  123. schemaKey: SpeciesType
  124. wasGeneratedBy:
  125. - description: Thermal plaid experiment
  126. name: Acquisition session
  127. schemaKey: Session
  128. startDate: '2023-02-14T13:47:00-05:00'
  129. - description: Metadata generated by DANDI cli
  130. endDate: '2023-04-20T16:56:13.967508-04:00'
  131. id: urn:uuid:f72f8d71-140e-440c-80ac-ac6f27d53419
  132. name: Metadata generation
  133. schemaKey: Activity
  134. startDate: '2023-04-20T16:56:13.937244-04:00'
  135. wasAssociatedWith:
  136. - identifier: RRID:SCR_019009
  137. name: DANDI Command Line Interface
  138. schemaKey: Software
  139. url: https://github.com/dandi/dandi-cli
  140. version: 0.53.0
  141. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  142. access:
  143. - schemaKey: AccessRequirements
  144. status: dandi:OpenAccess
  145. approach:
  146. - name: behavioral approach
  147. schemaKey: ApproachType
  148. blobDateModified: '2023-04-20T16:46:23.845409-04:00'
  149. contentSize: 35158899
  150. contentUrl:
  151. - https://api.dandiarchive.org/api/assets/52fe7af8-1258-4ac1-9947-f587bd26318e/download/
  152. - https://dandiarchive.s3.amazonaws.com/blobs/869/767/86976763-aeab-4054-b969-afec7a1cb9e3
  153. dateModified: '2023-04-20T16:56:14.120726-04:00'
  154. digest:
  155. dandi:dandi-etag: dd4db20af4ffc3b015601567c14ef5c3-1
  156. dandi:sha2-256: 1b521d2010684b5fdb46a42331b14b7ae9d4c032e1136c8abe2e20c0b18597a2
  157. encodingFormat: application/x-nwb
  158. id: dandiasset:52fe7af8-1258-4ac1-9947-f587bd26318e
  159. identifier: 52fe7af8-1258-4ac1-9947-f587bd26318e
  160. measurementTechnique:
  161. - name: analytical technique
  162. schemaKey: MeasurementTechniqueType
  163. - name: behavioral technique
  164. schemaKey: MeasurementTechniqueType
  165. path: sub-Plaid-warm-02-nachet/sub-Plaid-warm-02-nachet_ses-20230214T095800_behavior.nwb
  166. schemaKey: Asset
  167. schemaVersion: 0.6.4
  168. variableMeasured:
  169. - schemaKey: PropertyValue
  170. value: SpatialSeries
  171. - schemaKey: PropertyValue
  172. value: Position
  173. - schemaKey: PropertyValue
  174. value: ProcessingModule
  175. - schemaKey: PropertyValue
  176. value: CompassDirection
  177. wasAttributedTo:
  178. - age:
  179. schemaKey: PropertyValue
  180. unitText: ISO-8601 duration
  181. value: P7DT35880S
  182. valueReference:
  183. schemaKey: PropertyValue
  184. value: dandi:BirthReference
  185. identifier: Plaid_warm_02_nachet
  186. schemaKey: Participant
  187. sex:
  188. name: Unknown
  189. schemaKey: SexType
  190. species:
  191. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  192. name: Danio rerio - Zebra fish
  193. schemaKey: SpeciesType
  194. wasGeneratedBy:
  195. - description: Thermal plaid experiment
  196. name: Acquisition session
  197. schemaKey: Session
  198. startDate: '2023-02-14T09:58:00-05:00'
  199. - description: Metadata generated by DANDI cli
  200. endDate: '2023-04-20T16:56:14.120726-04:00'
  201. id: urn:uuid:99907f57-be61-4f42-a89e-22aad0353952
  202. name: Metadata generation
  203. schemaKey: Activity
  204. startDate: '2023-04-20T16:56:14.118709-04:00'
  205. wasAssociatedWith:
  206. - identifier: RRID:SCR_019009
  207. name: DANDI Command Line Interface
  208. schemaKey: Software
  209. url: https://github.com/dandi/dandi-cli
  210. version: 0.53.0
  211. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  212. access:
  213. - schemaKey: AccessRequirements
  214. status: dandi:OpenAccess
  215. approach:
  216. - name: behavioral approach
  217. schemaKey: ApproachType
  218. blobDateModified: '2023-04-20T16:47:00.017316-04:00'
  219. contentSize: 34884081
  220. contentUrl:
  221. - https://api.dandiarchive.org/api/assets/03dfdb45-32ec-4957-8ddc-0c3bca242bf7/download/
  222. - https://dandiarchive.s3.amazonaws.com/blobs/a9c/823/a9c8239c-3817-4e09-8454-84b0e9a2596b
  223. dateModified: '2023-04-20T16:56:14.027945-04:00'
  224. digest:
  225. dandi:dandi-etag: af9064ce23a63fbddd06dcb218d16aaa-1
  226. dandi:sha2-256: d357e234b494d2bbcee4823fef947415bd90b8b7582f7bcd1e61229c8f8079f9
  227. encodingFormat: application/x-nwb
  228. id: dandiasset:03dfdb45-32ec-4957-8ddc-0c3bca242bf7
  229. identifier: 03dfdb45-32ec-4957-8ddc-0c3bca242bf7
  230. measurementTechnique:
  231. - name: analytical technique
  232. schemaKey: MeasurementTechniqueType
  233. - name: behavioral technique
  234. schemaKey: MeasurementTechniqueType
  235. path: sub-Plaid-warm-05-nachet/sub-Plaid-warm-05-nachet_ses-20230228T090700_behavior.nwb
  236. schemaKey: Asset
  237. schemaVersion: 0.6.4
  238. variableMeasured:
  239. - schemaKey: PropertyValue
  240. value: SpatialSeries
  241. - schemaKey: PropertyValue
  242. value: Position
  243. - schemaKey: PropertyValue
  244. value: ProcessingModule
  245. - schemaKey: PropertyValue
  246. value: CompassDirection
  247. wasAttributedTo:
  248. - age:
  249. schemaKey: PropertyValue
  250. unitText: ISO-8601 duration
  251. value: P6DT32820S
  252. valueReference:
  253. schemaKey: PropertyValue
  254. value: dandi:BirthReference
  255. identifier: Plaid_warm_05_nachet
  256. schemaKey: Participant
  257. sex:
  258. name: Unknown
  259. schemaKey: SexType
  260. species:
  261. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  262. name: Danio rerio - Zebra fish
  263. schemaKey: SpeciesType
  264. wasGeneratedBy:
  265. - description: Thermal plaid experiment
  266. name: Acquisition session
  267. schemaKey: Session
  268. startDate: '2023-02-28T09:07:00-05:00'
  269. - description: Metadata generated by DANDI cli
  270. endDate: '2023-04-20T16:56:14.027945-04:00'
  271. id: urn:uuid:c5ac7ffc-7e34-44c2-a64c-332e9c33cd50
  272. name: Metadata generation
  273. schemaKey: Activity
  274. startDate: '2023-04-20T16:56:14.027945-04:00'
  275. wasAssociatedWith:
  276. - identifier: RRID:SCR_019009
  277. name: DANDI Command Line Interface
  278. schemaKey: Software
  279. url: https://github.com/dandi/dandi-cli
  280. version: 0.53.0
  281. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  282. access:
  283. - schemaKey: AccessRequirements
  284. status: dandi:OpenAccess
  285. approach:
  286. - name: behavioral approach
  287. schemaKey: ApproachType
  288. blobDateModified: '2023-04-20T16:46:35.870722-04:00'
  289. contentSize: 35465325
  290. contentUrl:
  291. - https://api.dandiarchive.org/api/assets/4b1b8891-bdba-4a15-847d-66078a269d46/download/
  292. - https://dandiarchive.s3.amazonaws.com/blobs/d84/146/d841464c-0015-4efd-abd5-5ead6eec92dc
  293. dateModified: '2023-04-20T16:56:14.219922-04:00'
  294. digest:
  295. dandi:dandi-etag: 9c32732310e3fcc3424869771ec2e7ec-1
  296. dandi:sha2-256: db68da1fe0ec7a09a5f30dcfef7ea630e5d485b66b327741902df4ea63d1eebf
  297. encodingFormat: application/x-nwb
  298. id: dandiasset:4b1b8891-bdba-4a15-847d-66078a269d46
  299. identifier: 4b1b8891-bdba-4a15-847d-66078a269d46
  300. measurementTechnique:
  301. - name: analytical technique
  302. schemaKey: MeasurementTechniqueType
  303. - name: behavioral technique
  304. schemaKey: MeasurementTechniqueType
  305. path: sub-Plaid-warm-03-nachet/sub-Plaid-warm-03-nachet_ses-20230214T115800_behavior.nwb
  306. schemaKey: Asset
  307. schemaVersion: 0.6.4
  308. variableMeasured:
  309. - schemaKey: PropertyValue
  310. value: SpatialSeries
  311. - schemaKey: PropertyValue
  312. value: Position
  313. - schemaKey: PropertyValue
  314. value: ProcessingModule
  315. - schemaKey: PropertyValue
  316. value: CompassDirection
  317. wasAttributedTo:
  318. - age:
  319. schemaKey: PropertyValue
  320. unitText: ISO-8601 duration
  321. value: P7DT43080S
  322. valueReference:
  323. schemaKey: PropertyValue
  324. value: dandi:BirthReference
  325. identifier: Plaid_warm_03_nachet
  326. schemaKey: Participant
  327. sex:
  328. name: Unknown
  329. schemaKey: SexType
  330. species:
  331. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  332. name: Danio rerio - Zebra fish
  333. schemaKey: SpeciesType
  334. wasGeneratedBy:
  335. - description: Thermal plaid experiment
  336. name: Acquisition session
  337. schemaKey: Session
  338. startDate: '2023-02-14T11:58:00-05:00'
  339. - description: Metadata generated by DANDI cli
  340. endDate: '2023-04-20T16:56:14.219922-04:00'
  341. id: urn:uuid:a35e89d2-f47b-46bf-8c3b-54d5a6847eae
  342. name: Metadata generation
  343. schemaKey: Activity
  344. startDate: '2023-04-20T16:56:14.209957-04:00'
  345. wasAssociatedWith:
  346. - identifier: RRID:SCR_019009
  347. name: DANDI Command Line Interface
  348. schemaKey: Software
  349. url: https://github.com/dandi/dandi-cli
  350. version: 0.53.0
  351. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  352. access:
  353. - schemaKey: AccessRequirements
  354. status: dandi:OpenAccess
  355. approach:
  356. - name: behavioral approach
  357. schemaKey: ApproachType
  358. blobDateModified: '2023-04-20T16:47:12.065335-04:00'
  359. contentSize: 35401360
  360. contentUrl:
  361. - https://api.dandiarchive.org/api/assets/c9f064a3-4a58-4ecd-9148-d2fe772cb976/download/
  362. - https://dandiarchive.s3.amazonaws.com/blobs/5c5/dd2/5c5dd2c1-792e-4a1f-8fe6-e9f73678e221
  363. dateModified: '2023-04-20T16:56:17.827640-04:00'
  364. digest:
  365. dandi:dandi-etag: a2185fa1338c1fac4920cbe0d1b914ea-1
  366. dandi:sha2-256: 3188fc46d7de6ee6042990fd324ee05944736ffae25e6d8a65f0bc2713ead689
  367. encodingFormat: application/x-nwb
  368. id: dandiasset:c9f064a3-4a58-4ecd-9148-d2fe772cb976
  369. identifier: c9f064a3-4a58-4ecd-9148-d2fe772cb976
  370. measurementTechnique:
  371. - name: analytical technique
  372. schemaKey: MeasurementTechniqueType
  373. - name: behavioral technique
  374. schemaKey: MeasurementTechniqueType
  375. path: sub-Plaid-warm-06-nachet/sub-Plaid-warm-06-nachet_ses-20230228T111400_behavior.nwb
  376. schemaKey: Asset
  377. schemaVersion: 0.6.4
  378. variableMeasured:
  379. - schemaKey: PropertyValue
  380. value: SpatialSeries
  381. - schemaKey: PropertyValue
  382. value: Position
  383. - schemaKey: PropertyValue
  384. value: ProcessingModule
  385. - schemaKey: PropertyValue
  386. value: CompassDirection
  387. wasAttributedTo:
  388. - age:
  389. schemaKey: PropertyValue
  390. unitText: ISO-8601 duration
  391. value: P6DT40440S
  392. valueReference:
  393. schemaKey: PropertyValue
  394. value: dandi:BirthReference
  395. identifier: Plaid_warm_06_nachet
  396. schemaKey: Participant
  397. sex:
  398. name: Unknown
  399. schemaKey: SexType
  400. species:
  401. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  402. name: Danio rerio - Zebra fish
  403. schemaKey: SpeciesType
  404. wasGeneratedBy:
  405. - description: Thermal plaid experiment
  406. name: Acquisition session
  407. schemaKey: Session
  408. startDate: '2023-02-28T11:14:00-05:00'
  409. - description: Metadata generated by DANDI cli
  410. endDate: '2023-04-20T16:56:17.827640-04:00'
  411. id: urn:uuid:576af187-cbad-42ce-b5de-a82cd21aeff4
  412. name: Metadata generation
  413. schemaKey: Activity
  414. startDate: '2023-04-20T16:56:17.827640-04:00'
  415. wasAssociatedWith:
  416. - identifier: RRID:SCR_019009
  417. name: DANDI Command Line Interface
  418. schemaKey: Software
  419. url: https://github.com/dandi/dandi-cli
  420. version: 0.53.0
  421. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  422. access:
  423. - schemaKey: AccessRequirements
  424. status: dandi:OpenAccess
  425. approach:
  426. - name: behavioral approach
  427. schemaKey: ApproachType
  428. blobDateModified: '2023-04-20T16:47:24.050615-04:00'
  429. contentSize: 35363130
  430. contentUrl:
  431. - https://api.dandiarchive.org/api/assets/36b69fdf-3869-4da5-9260-78c623d4e1b6/download/
  432. - https://dandiarchive.s3.amazonaws.com/blobs/a69/5d2/a695d25e-bd66-40ed-bd3c-3b38e8d84c3a
  433. dateModified: '2023-04-20T16:56:18.608805-04:00'
  434. digest:
  435. dandi:dandi-etag: 68e7ffa38354c8756e462925a62c2d40-1
  436. dandi:sha2-256: 216728948b8a82c368762f85e513727ee6b9216d9e949a7a0f2717d6b5db7d3d
  437. encodingFormat: application/x-nwb
  438. id: dandiasset:36b69fdf-3869-4da5-9260-78c623d4e1b6
  439. identifier: 36b69fdf-3869-4da5-9260-78c623d4e1b6
  440. measurementTechnique:
  441. - name: analytical technique
  442. schemaKey: MeasurementTechniqueType
  443. - name: behavioral technique
  444. schemaKey: MeasurementTechniqueType
  445. path: sub-Plaid-warm-07-nachet/sub-Plaid-warm-07-nachet_ses-20230228T135900_behavior.nwb
  446. schemaKey: Asset
  447. schemaVersion: 0.6.4
  448. variableMeasured:
  449. - schemaKey: PropertyValue
  450. value: SpatialSeries
  451. - schemaKey: PropertyValue
  452. value: Position
  453. - schemaKey: PropertyValue
  454. value: ProcessingModule
  455. - schemaKey: PropertyValue
  456. value: CompassDirection
  457. wasAttributedTo:
  458. - age:
  459. schemaKey: PropertyValue
  460. unitText: ISO-8601 duration
  461. value: P6DT50340S
  462. valueReference:
  463. schemaKey: PropertyValue
  464. value: dandi:BirthReference
  465. identifier: Plaid_warm_07_nachet
  466. schemaKey: Participant
  467. sex:
  468. name: Unknown
  469. schemaKey: SexType
  470. species:
  471. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  472. name: Danio rerio - Zebra fish
  473. schemaKey: SpeciesType
  474. wasGeneratedBy:
  475. - description: Thermal plaid experiment
  476. name: Acquisition session
  477. schemaKey: Session
  478. startDate: '2023-02-28T13:59:00-05:00'
  479. - description: Metadata generated by DANDI cli
  480. endDate: '2023-04-20T16:56:18.608805-04:00'
  481. id: urn:uuid:b4922bb3-f18f-42fa-9d3d-45bc8125b9d7
  482. name: Metadata generation
  483. schemaKey: Activity
  484. startDate: '2023-04-20T16:56:18.540028-04:00'
  485. wasAssociatedWith:
  486. - identifier: RRID:SCR_019009
  487. name: DANDI Command Line Interface
  488. schemaKey: Software
  489. url: https://github.com/dandi/dandi-cli
  490. version: 0.53.0
  491. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  492. access:
  493. - schemaKey: AccessRequirements
  494. status: dandi:OpenAccess
  495. approach:
  496. - name: behavioral approach
  497. schemaKey: ApproachType
  498. blobDateModified: '2023-04-20T16:47:36.087943-04:00'
  499. contentSize: 34709468
  500. contentUrl:
  501. - https://api.dandiarchive.org/api/assets/66896c62-0928-486a-bacf-36639a673458/download/
  502. - https://dandiarchive.s3.amazonaws.com/blobs/10b/d56/10bd564a-0216-4c74-a53d-9f9a76cc622e
  503. dateModified: '2023-04-20T16:56:18.905977-04:00'
  504. digest:
  505. dandi:dandi-etag: afd883fe398a3ab4aee1085a9144b202-1
  506. dandi:sha2-256: d6bcc070c82990912b1d08dc5ca843751cee20498a4c8824e6c1fe3bcd74d8bb
  507. encodingFormat: application/x-nwb
  508. id: dandiasset:66896c62-0928-486a-bacf-36639a673458
  509. identifier: 66896c62-0928-486a-bacf-36639a673458
  510. measurementTechnique:
  511. - name: analytical technique
  512. schemaKey: MeasurementTechniqueType
  513. - name: behavioral technique
  514. schemaKey: MeasurementTechniqueType
  515. path: sub-Plaid-warm-08-nachet/sub-Plaid-warm-08-nachet_ses-20230228T154800_behavior.nwb
  516. schemaKey: Asset
  517. schemaVersion: 0.6.4
  518. variableMeasured:
  519. - schemaKey: PropertyValue
  520. value: SpatialSeries
  521. - schemaKey: PropertyValue
  522. value: Position
  523. - schemaKey: PropertyValue
  524. value: ProcessingModule
  525. - schemaKey: PropertyValue
  526. value: CompassDirection
  527. wasAttributedTo:
  528. - age:
  529. schemaKey: PropertyValue
  530. unitText: ISO-8601 duration
  531. value: P6DT56880S
  532. valueReference:
  533. schemaKey: PropertyValue
  534. value: dandi:BirthReference
  535. identifier: Plaid_warm_08_nachet
  536. schemaKey: Participant
  537. sex:
  538. name: Unknown
  539. schemaKey: SexType
  540. species:
  541. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  542. name: Danio rerio - Zebra fish
  543. schemaKey: SpeciesType
  544. wasGeneratedBy:
  545. - description: Thermal plaid experiment
  546. name: Acquisition session
  547. schemaKey: Session
  548. startDate: '2023-02-28T15:48:00-05:00'
  549. - description: Metadata generated by DANDI cli
  550. endDate: '2023-04-20T16:56:18.905977-04:00'
  551. id: urn:uuid:b0f3297d-3c78-4c37-b94b-e7a088257e30
  552. name: Metadata generation
  553. schemaKey: Activity
  554. startDate: '2023-04-20T16:56:18.895915-04:00'
  555. wasAssociatedWith:
  556. - identifier: RRID:SCR_019009
  557. name: DANDI Command Line Interface
  558. schemaKey: Software
  559. url: https://github.com/dandi/dandi-cli
  560. version: 0.53.0
  561. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  562. access:
  563. - schemaKey: AccessRequirements
  564. status: dandi:OpenAccess
  565. approach:
  566. - name: behavioral approach
  567. schemaKey: ApproachType
  568. blobDateModified: '2023-04-20T16:47:48.157520-04:00'
  569. contentSize: 35207565
  570. contentUrl:
  571. - https://api.dandiarchive.org/api/assets/22cee496-cb42-4909-bda3-d762c4fd39ad/download/
  572. - https://dandiarchive.s3.amazonaws.com/blobs/576/5ed/5765eddd-aace-48cc-a201-c33d4a01ec43
  573. dateModified: '2023-04-20T16:56:19.079057-04:00'
  574. digest:
  575. dandi:dandi-etag: 5a68e0b47a0d5ae1893cb66352463d87-1
  576. dandi:sha2-256: 66eac688b07c6a06c56c0535ed4b93e094c373ed4b70b0e06feb3f7484935a3f
  577. encodingFormat: application/x-nwb
  578. id: dandiasset:22cee496-cb42-4909-bda3-d762c4fd39ad
  579. identifier: 22cee496-cb42-4909-bda3-d762c4fd39ad
  580. measurementTechnique:
  581. - name: analytical technique
  582. schemaKey: MeasurementTechniqueType
  583. - name: behavioral technique
  584. schemaKey: MeasurementTechniqueType
  585. path: sub-Plaid-warm-09-nachet/sub-Plaid-warm-09-nachet_ses-20230301T110200_behavior.nwb
  586. schemaKey: Asset
  587. schemaVersion: 0.6.4
  588. variableMeasured:
  589. - schemaKey: PropertyValue
  590. value: SpatialSeries
  591. - schemaKey: PropertyValue
  592. value: Position
  593. - schemaKey: PropertyValue
  594. value: ProcessingModule
  595. - schemaKey: PropertyValue
  596. value: CompassDirection
  597. wasAttributedTo:
  598. - age:
  599. schemaKey: PropertyValue
  600. unitText: ISO-8601 duration
  601. value: P7DT39720S
  602. valueReference:
  603. schemaKey: PropertyValue
  604. value: dandi:BirthReference
  605. identifier: Plaid_warm_09_nachet
  606. schemaKey: Participant
  607. sex:
  608. name: Unknown
  609. schemaKey: SexType
  610. species:
  611. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  612. name: Danio rerio - Zebra fish
  613. schemaKey: SpeciesType
  614. wasGeneratedBy:
  615. - description: Thermal plaid experiment
  616. name: Acquisition session
  617. schemaKey: Session
  618. startDate: '2023-03-01T11:02:00-05:00'
  619. - description: Metadata generated by DANDI cli
  620. endDate: '2023-04-20T16:56:19.079057-04:00'
  621. id: urn:uuid:1c7b6914-6a34-4085-b420-9f500335bee5
  622. name: Metadata generation
  623. schemaKey: Activity
  624. startDate: '2023-04-20T16:56:19.079057-04:00'
  625. wasAssociatedWith:
  626. - identifier: RRID:SCR_019009
  627. name: DANDI Command Line Interface
  628. schemaKey: Software
  629. url: https://github.com/dandi/dandi-cli
  630. version: 0.53.0
  631. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  632. access:
  633. - schemaKey: AccessRequirements
  634. status: dandi:OpenAccess
  635. approach:
  636. - name: behavioral approach
  637. schemaKey: ApproachType
  638. blobDateModified: '2023-04-20T16:48:00.270332-04:00'
  639. contentSize: 35088669
  640. contentUrl:
  641. - https://api.dandiarchive.org/api/assets/0a662e32-e95b-4c57-9457-1024b0db648e/download/
  642. - https://dandiarchive.s3.amazonaws.com/blobs/83b/fec/83bfecda-d898-4413-944c-485b4a626f03
  643. dateModified: '2023-04-20T16:56:21.125907-04:00'
  644. digest:
  645. dandi:dandi-etag: 12bffa20ea1a66a1b1bf761e1513fd8c-1
  646. dandi:sha2-256: f5afdd0599fd2a43ed28b242315cc58031dba17db29107041d22d9948553ff14
  647. encodingFormat: application/x-nwb
  648. id: dandiasset:0a662e32-e95b-4c57-9457-1024b0db648e
  649. identifier: 0a662e32-e95b-4c57-9457-1024b0db648e
  650. measurementTechnique:
  651. - name: analytical technique
  652. schemaKey: MeasurementTechniqueType
  653. - name: behavioral technique
  654. schemaKey: MeasurementTechniqueType
  655. path: sub-Plaid-warm-10-nachet/sub-Plaid-warm-10-nachet_ses-20230301T161300_behavior.nwb
  656. schemaKey: Asset
  657. schemaVersion: 0.6.4
  658. variableMeasured:
  659. - schemaKey: PropertyValue
  660. value: SpatialSeries
  661. - schemaKey: PropertyValue
  662. value: Position
  663. - schemaKey: PropertyValue
  664. value: ProcessingModule
  665. - schemaKey: PropertyValue
  666. value: CompassDirection
  667. wasAttributedTo:
  668. - age:
  669. schemaKey: PropertyValue
  670. unitText: ISO-8601 duration
  671. value: P7DT58380S
  672. valueReference:
  673. schemaKey: PropertyValue
  674. value: dandi:BirthReference
  675. identifier: Plaid_warm_10_nachet
  676. schemaKey: Participant
  677. sex:
  678. name: Unknown
  679. schemaKey: SexType
  680. species:
  681. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  682. name: Danio rerio - Zebra fish
  683. schemaKey: SpeciesType
  684. wasGeneratedBy:
  685. - description: Thermal plaid experiment
  686. name: Acquisition session
  687. schemaKey: Session
  688. startDate: '2023-03-01T16:13:00-05:00'
  689. - description: Metadata generated by DANDI cli
  690. endDate: '2023-04-20T16:56:21.125907-04:00'
  691. id: urn:uuid:f75b080f-718e-4b4f-a29a-0bcbcbe59f4d
  692. name: Metadata generation
  693. schemaKey: Activity
  694. startDate: '2023-04-20T16:56:21.083679-04:00'
  695. wasAssociatedWith:
  696. - identifier: RRID:SCR_019009
  697. name: DANDI Command Line Interface
  698. schemaKey: Software
  699. url: https://github.com/dandi/dandi-cli
  700. version: 0.53.0
  701. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  702. access:
  703. - schemaKey: AccessRequirements
  704. status: dandi:OpenAccess
  705. approach:
  706. - name: behavioral approach
  707. schemaKey: ApproachType
  708. blobDateModified: '2023-04-20T16:48:12.309183-04:00'
  709. contentSize: 35167653
  710. contentUrl:
  711. - https://api.dandiarchive.org/api/assets/c9d9e9fa-f089-4bab-ab99-32a7ca9b15b7/download/
  712. - https://dandiarchive.s3.amazonaws.com/blobs/d21/e97/d21e973f-4ccc-4814-bd82-3035e74afdc7
  713. dateModified: '2023-04-20T16:56:22.030599-04:00'
  714. digest:
  715. dandi:dandi-etag: 1e49e0481a66072ae4d0b6aac809363d-1
  716. dandi:sha2-256: 3b9d24ce708e29a0d1a36de2a58c3c2038154816365b28945dc0234318b389e6
  717. encodingFormat: application/x-nwb
  718. id: dandiasset:c9d9e9fa-f089-4bab-ab99-32a7ca9b15b7
  719. identifier: c9d9e9fa-f089-4bab-ab99-32a7ca9b15b7
  720. measurementTechnique:
  721. - name: analytical technique
  722. schemaKey: MeasurementTechniqueType
  723. - name: behavioral technique
  724. schemaKey: MeasurementTechniqueType
  725. path: sub-Plaid-warm-11-nachet/sub-Plaid-warm-11-nachet_ses-20230307T114100_behavior.nwb
  726. schemaKey: Asset
  727. schemaVersion: 0.6.4
  728. variableMeasured:
  729. - schemaKey: PropertyValue
  730. value: SpatialSeries
  731. - schemaKey: PropertyValue
  732. value: Position
  733. - schemaKey: PropertyValue
  734. value: ProcessingModule
  735. - schemaKey: PropertyValue
  736. value: CompassDirection
  737. wasAttributedTo:
  738. - age:
  739. schemaKey: PropertyValue
  740. unitText: ISO-8601 duration
  741. value: P7DT42060S
  742. valueReference:
  743. schemaKey: PropertyValue
  744. value: dandi:BirthReference
  745. identifier: Plaid_warm_11_nachet
  746. schemaKey: Participant
  747. sex:
  748. name: Unknown
  749. schemaKey: SexType
  750. species:
  751. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  752. name: Danio rerio - Zebra fish
  753. schemaKey: SpeciesType
  754. wasGeneratedBy:
  755. - description: Thermal plaid experiment
  756. name: Acquisition session
  757. schemaKey: Session
  758. startDate: '2023-03-07T11:41:00-05:00'
  759. - description: Metadata generated by DANDI cli
  760. endDate: '2023-04-20T16:56:22.030599-04:00'
  761. id: urn:uuid:3bc7cc16-636e-4571-a182-dda175431886
  762. name: Metadata generation
  763. schemaKey: Activity
  764. startDate: '2023-04-20T16:56:22.020595-04:00'
  765. wasAssociatedWith:
  766. - identifier: RRID:SCR_019009
  767. name: DANDI Command Line Interface
  768. schemaKey: Software
  769. url: https://github.com/dandi/dandi-cli
  770. version: 0.53.0
  771. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  772. access:
  773. - schemaKey: AccessRequirements
  774. status: dandi:OpenAccess
  775. approach:
  776. - name: behavioral approach
  777. schemaKey: ApproachType
  778. blobDateModified: '2023-04-20T16:48:36.390494-04:00'
  779. contentSize: 34896414
  780. contentUrl:
  781. - https://api.dandiarchive.org/api/assets/b86babca-b0ab-459d-80d9-520fcbb94340/download/
  782. - https://dandiarchive.s3.amazonaws.com/blobs/74e/cb9/74ecb9bd-36c2-4c0e-98aa-700cbcfa1468
  783. dateModified: '2023-04-20T16:56:22.920467-04:00'
  784. digest:
  785. dandi:dandi-etag: a988108d95530c4ce31d8a83c354bb91-1
  786. dandi:sha2-256: e8f4c989448a05f81882282f27d283694e3fc92c0166285e5d71ca301dd23e49
  787. encodingFormat: application/x-nwb
  788. id: dandiasset:b86babca-b0ab-459d-80d9-520fcbb94340
  789. identifier: b86babca-b0ab-459d-80d9-520fcbb94340
  790. measurementTechnique:
  791. - name: analytical technique
  792. schemaKey: MeasurementTechniqueType
  793. - name: behavioral technique
  794. schemaKey: MeasurementTechniqueType
  795. path: sub-Plaid-warm-13-nachet/sub-Plaid-warm-13-nachet_ses-20230307T161800_behavior.nwb
  796. schemaKey: Asset
  797. schemaVersion: 0.6.4
  798. variableMeasured:
  799. - schemaKey: PropertyValue
  800. value: SpatialSeries
  801. - schemaKey: PropertyValue
  802. value: Position
  803. - schemaKey: PropertyValue
  804. value: ProcessingModule
  805. - schemaKey: PropertyValue
  806. value: CompassDirection
  807. wasAttributedTo:
  808. - age:
  809. schemaKey: PropertyValue
  810. unitText: ISO-8601 duration
  811. value: P7DT58680S
  812. valueReference:
  813. schemaKey: PropertyValue
  814. value: dandi:BirthReference
  815. identifier: Plaid_warm_13_nachet
  816. schemaKey: Participant
  817. sex:
  818. name: Unknown
  819. schemaKey: SexType
  820. species:
  821. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  822. name: Danio rerio - Zebra fish
  823. schemaKey: SpeciesType
  824. wasGeneratedBy:
  825. - description: Thermal plaid experiment
  826. name: Acquisition session
  827. schemaKey: Session
  828. startDate: '2023-03-07T16:18:00-05:00'
  829. - description: Metadata generated by DANDI cli
  830. endDate: '2023-04-20T16:56:22.920467-04:00'
  831. id: urn:uuid:db062b4f-1a30-48ff-8cce-bf111351df13
  832. name: Metadata generation
  833. schemaKey: Activity
  834. startDate: '2023-04-20T16:56:22.780953-04:00'
  835. wasAssociatedWith:
  836. - identifier: RRID:SCR_019009
  837. name: DANDI Command Line Interface
  838. schemaKey: Software
  839. url: https://github.com/dandi/dandi-cli
  840. version: 0.53.0
  841. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  842. access:
  843. - schemaKey: AccessRequirements
  844. status: dandi:OpenAccess
  845. approach:
  846. - name: behavioral approach
  847. schemaKey: ApproachType
  848. blobDateModified: '2023-04-20T16:48:48.435289-04:00'
  849. contentSize: 35016413
  850. contentUrl:
  851. - https://api.dandiarchive.org/api/assets/1955832a-0055-4531-98a8-721e9040296f/download/
  852. - https://dandiarchive.s3.amazonaws.com/blobs/40e/c8a/40ec8a3e-8f28-4e9e-8790-2d7690665b99
  853. dateModified: '2023-04-20T16:56:23.319332-04:00'
  854. digest:
  855. dandi:dandi-etag: 10420aa54c45538ef071fb93c920fb4f-1
  856. dandi:sha2-256: a5b8f54d1926963ae0c42ecd4017cb2610b440613acf9ed0b8f60c9b2ad0867b
  857. encodingFormat: application/x-nwb
  858. id: dandiasset:1955832a-0055-4531-98a8-721e9040296f
  859. identifier: 1955832a-0055-4531-98a8-721e9040296f
  860. measurementTechnique:
  861. - name: analytical technique
  862. schemaKey: MeasurementTechniqueType
  863. - name: behavioral technique
  864. schemaKey: MeasurementTechniqueType
  865. path: sub-Plaid-warm-14-nachet/sub-Plaid-warm-14-nachet_ses-20230308T093400_behavior.nwb
  866. schemaKey: Asset
  867. schemaVersion: 0.6.4
  868. variableMeasured:
  869. - schemaKey: PropertyValue
  870. value: SpatialSeries
  871. - schemaKey: PropertyValue
  872. value: Position
  873. - schemaKey: PropertyValue
  874. value: ProcessingModule
  875. - schemaKey: PropertyValue
  876. value: CompassDirection
  877. wasAttributedTo:
  878. - age:
  879. schemaKey: PropertyValue
  880. unitText: ISO-8601 duration
  881. value: P8DT34440S
  882. valueReference:
  883. schemaKey: PropertyValue
  884. value: dandi:BirthReference
  885. identifier: Plaid_warm_14_nachet
  886. schemaKey: Participant
  887. sex:
  888. name: Unknown
  889. schemaKey: SexType
  890. species:
  891. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  892. name: Danio rerio - Zebra fish
  893. schemaKey: SpeciesType
  894. wasGeneratedBy:
  895. - description: Thermal plaid experiment
  896. name: Acquisition session
  897. schemaKey: Session
  898. startDate: '2023-03-08T09:34:00-05:00'
  899. - description: Metadata generated by DANDI cli
  900. endDate: '2023-04-20T16:56:23.319332-04:00'
  901. id: urn:uuid:b48b4ea8-50f4-4bfd-93cc-e44004807425
  902. name: Metadata generation
  903. schemaKey: Activity
  904. startDate: '2023-04-20T16:56:23.319332-04:00'
  905. wasAssociatedWith:
  906. - identifier: RRID:SCR_019009
  907. name: DANDI Command Line Interface
  908. schemaKey: Software
  909. url: https://github.com/dandi/dandi-cli
  910. version: 0.53.0
  911. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  912. access:
  913. - schemaKey: AccessRequirements
  914. status: dandi:OpenAccess
  915. approach:
  916. - name: behavioral approach
  917. schemaKey: ApproachType
  918. blobDateModified: '2023-04-20T16:49:00.538658-04:00'
  919. contentSize: 34941895
  920. contentUrl:
  921. - https://api.dandiarchive.org/api/assets/d81d3179-21fc-4f49-82ec-41cdffcc7a5c/download/
  922. - https://dandiarchive.s3.amazonaws.com/blobs/57a/bc9/57abc9c5-1da4-4e60-bca9-9b179e98fbf8
  923. dateModified: '2023-04-20T16:56:24.044828-04:00'
  924. digest:
  925. dandi:dandi-etag: bfa38b53ccf177f637fd6ad515d0b20c-1
  926. dandi:sha2-256: 0bdef177e008b1165221ee78165b00171ea1a97a32d3f92ff3e94dfcc177052f
  927. encodingFormat: application/x-nwb
  928. id: dandiasset:d81d3179-21fc-4f49-82ec-41cdffcc7a5c
  929. identifier: d81d3179-21fc-4f49-82ec-41cdffcc7a5c
  930. measurementTechnique:
  931. - name: analytical technique
  932. schemaKey: MeasurementTechniqueType
  933. - name: behavioral technique
  934. schemaKey: MeasurementTechniqueType
  935. path: sub-Plaid-warm-15-nachet/sub-Plaid-warm-15-nachet_ses-20230308T124200_behavior.nwb
  936. schemaKey: Asset
  937. schemaVersion: 0.6.4
  938. variableMeasured:
  939. - schemaKey: PropertyValue
  940. value: SpatialSeries
  941. - schemaKey: PropertyValue
  942. value: Position
  943. - schemaKey: PropertyValue
  944. value: ProcessingModule
  945. - schemaKey: PropertyValue
  946. value: CompassDirection
  947. wasAttributedTo:
  948. - age:
  949. schemaKey: PropertyValue
  950. unitText: ISO-8601 duration
  951. value: P8DT45720S
  952. valueReference:
  953. schemaKey: PropertyValue
  954. value: dandi:BirthReference
  955. identifier: Plaid_warm_15_nachet
  956. schemaKey: Participant
  957. sex:
  958. name: Unknown
  959. schemaKey: SexType
  960. species:
  961. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  962. name: Danio rerio - Zebra fish
  963. schemaKey: SpeciesType
  964. wasGeneratedBy:
  965. - description: Thermal plaid experiment
  966. name: Acquisition session
  967. schemaKey: Session
  968. startDate: '2023-03-08T12:42:00-05:00'
  969. - description: Metadata generated by DANDI cli
  970. endDate: '2023-04-20T16:56:24.044828-04:00'
  971. id: urn:uuid:603e76a9-674c-42e4-bb33-87aa07e5ed2f
  972. name: Metadata generation
  973. schemaKey: Activity
  974. startDate: '2023-04-20T16:56:23.996530-04:00'
  975. wasAssociatedWith:
  976. - identifier: RRID:SCR_019009
  977. name: DANDI Command Line Interface
  978. schemaKey: Software
  979. url: https://github.com/dandi/dandi-cli
  980. version: 0.53.0
  981. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  982. access:
  983. - schemaKey: AccessRequirements
  984. status: dandi:OpenAccess
  985. approach:
  986. - name: behavioral approach
  987. schemaKey: ApproachType
  988. blobDateModified: '2023-04-20T16:49:24.548009-04:00'
  989. contentSize: 34960879
  990. contentUrl:
  991. - https://api.dandiarchive.org/api/assets/9965b19a-e530-4aa2-a527-3d9229f7d6e8/download/
  992. - https://dandiarchive.s3.amazonaws.com/blobs/68a/81e/68a81ed9-3d52-4153-a2ea-93c0268e888a
  993. dateModified: '2023-04-20T16:56:25.986300-04:00'
  994. digest:
  995. dandi:dandi-etag: 8798c100a5781016de0cbcc295b1974f-1
  996. dandi:sha2-256: 243420a9747acfcb51151ae4ba0ea890cd1d02069c6879624f8488d776626a7f
  997. encodingFormat: application/x-nwb
  998. id: dandiasset:9965b19a-e530-4aa2-a527-3d9229f7d6e8
  999. identifier: 9965b19a-e530-4aa2-a527-3d9229f7d6e8
  1000. measurementTechnique:
  1001. - name: analytical technique
  1002. schemaKey: MeasurementTechniqueType
  1003. - name: behavioral technique
  1004. schemaKey: MeasurementTechniqueType
  1005. path: sub-Plaid-warm-17-nachet/sub-Plaid-warm-17-nachet_ses-20230314T092000_behavior.nwb
  1006. schemaKey: Asset
  1007. schemaVersion: 0.6.4
  1008. variableMeasured:
  1009. - schemaKey: PropertyValue
  1010. value: SpatialSeries
  1011. - schemaKey: PropertyValue
  1012. value: Position
  1013. - schemaKey: PropertyValue
  1014. value: ProcessingModule
  1015. - schemaKey: PropertyValue
  1016. value: CompassDirection
  1017. wasAttributedTo:
  1018. - age:
  1019. schemaKey: PropertyValue
  1020. unitText: ISO-8601 duration
  1021. value: P5DT30000S
  1022. valueReference:
  1023. schemaKey: PropertyValue
  1024. value: dandi:BirthReference
  1025. identifier: Plaid_warm_17_nachet
  1026. schemaKey: Participant
  1027. sex:
  1028. name: Unknown
  1029. schemaKey: SexType
  1030. species:
  1031. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  1032. name: Danio rerio - Zebra fish
  1033. schemaKey: SpeciesType
  1034. wasGeneratedBy:
  1035. - description: Thermal plaid experiment
  1036. name: Acquisition session
  1037. schemaKey: Session
  1038. startDate: '2023-03-14T09:20:00-04:00'
  1039. - description: Metadata generated by DANDI cli
  1040. endDate: '2023-04-20T16:56:25.986300-04:00'
  1041. id: urn:uuid:e99c55da-e585-4571-b445-db597b7b2882
  1042. name: Metadata generation
  1043. schemaKey: Activity
  1044. startDate: '2023-04-20T16:56:25.986300-04:00'
  1045. wasAssociatedWith:
  1046. - identifier: RRID:SCR_019009
  1047. name: DANDI Command Line Interface
  1048. schemaKey: Software
  1049. url: https://github.com/dandi/dandi-cli
  1050. version: 0.53.0
  1051. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1052. access:
  1053. - schemaKey: AccessRequirements
  1054. status: dandi:OpenAccess
  1055. approach:
  1056. - name: behavioral approach
  1057. schemaKey: ApproachType
  1058. blobDateModified: '2023-04-20T16:49:36.677785-04:00'
  1059. contentSize: 35597667
  1060. contentUrl:
  1061. - https://api.dandiarchive.org/api/assets/9ba6c6a3-e92e-4176-9c58-1c12049e0bb6/download/
  1062. - https://dandiarchive.s3.amazonaws.com/blobs/5d6/bd2/5d6bd2b8-8ed2-4e6c-a5db-7972c99d5e30
  1063. dateModified: '2023-04-20T16:56:26.187329-04:00'
  1064. digest:
  1065. dandi:dandi-etag: 8b5c834a4b514685296d7cc863fa461c-1
  1066. dandi:sha2-256: 055b4f2659b86ff9ca750fcecfab03b9e357643ae29a7edbc4ee3c525ab93ec3
  1067. encodingFormat: application/x-nwb
  1068. id: dandiasset:9ba6c6a3-e92e-4176-9c58-1c12049e0bb6
  1069. identifier: 9ba6c6a3-e92e-4176-9c58-1c12049e0bb6
  1070. measurementTechnique:
  1071. - name: analytical technique
  1072. schemaKey: MeasurementTechniqueType
  1073. - name: behavioral technique
  1074. schemaKey: MeasurementTechniqueType
  1075. path: sub-Plaid-warm-18-nachet/sub-Plaid-warm-18-nachet_ses-20230314T120400_behavior.nwb
  1076. schemaKey: Asset
  1077. schemaVersion: 0.6.4
  1078. variableMeasured:
  1079. - schemaKey: PropertyValue
  1080. value: SpatialSeries
  1081. - schemaKey: PropertyValue
  1082. value: Position
  1083. - schemaKey: PropertyValue
  1084. value: ProcessingModule
  1085. - schemaKey: PropertyValue
  1086. value: CompassDirection
  1087. wasAttributedTo:
  1088. - age:
  1089. schemaKey: PropertyValue
  1090. unitText: ISO-8601 duration
  1091. value: P5DT39840S
  1092. valueReference:
  1093. schemaKey: PropertyValue
  1094. value: dandi:BirthReference
  1095. identifier: Plaid_warm_18_nachet
  1096. schemaKey: Participant
  1097. sex:
  1098. name: Unknown
  1099. schemaKey: SexType
  1100. species:
  1101. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  1102. name: Danio rerio - Zebra fish
  1103. schemaKey: SpeciesType
  1104. wasGeneratedBy:
  1105. - description: Thermal plaid experiment
  1106. name: Acquisition session
  1107. schemaKey: Session
  1108. startDate: '2023-03-14T12:04:00-04:00'
  1109. - description: Metadata generated by DANDI cli
  1110. endDate: '2023-04-20T16:56:26.187329-04:00'
  1111. id: urn:uuid:d5b4eb1a-d5c9-45db-8ab9-29bda5845ccc
  1112. name: Metadata generation
  1113. schemaKey: Activity
  1114. startDate: '2023-04-20T16:56:26.187329-04:00'
  1115. wasAssociatedWith:
  1116. - identifier: RRID:SCR_019009
  1117. name: DANDI Command Line Interface
  1118. schemaKey: Software
  1119. url: https://github.com/dandi/dandi-cli
  1120. version: 0.53.0
  1121. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1122. access:
  1123. - schemaKey: AccessRequirements
  1124. status: dandi:OpenAccess
  1125. approach:
  1126. - name: behavioral approach
  1127. schemaKey: ApproachType
  1128. blobDateModified: '2023-04-20T16:49:48.622805-04:00'
  1129. contentSize: 34806372
  1130. contentUrl:
  1131. - https://api.dandiarchive.org/api/assets/e55827a7-e8cf-4a04-87f6-f648baf74e35/download/
  1132. - https://dandiarchive.s3.amazonaws.com/blobs/2dd/e6a/2dde6aa3-c5ac-47bc-b2ac-b0744bb8030f
  1133. dateModified: '2023-04-20T16:56:27.037531-04:00'
  1134. digest:
  1135. dandi:dandi-etag: 002e5cfffb27c2e50df6c29c78ef1f2a-1
  1136. dandi:sha2-256: 1e4249a8e115a911e62e9d443d2e00f3b5bdf711012a94e87296bfb305a74605
  1137. encodingFormat: application/x-nwb
  1138. id: dandiasset:e55827a7-e8cf-4a04-87f6-f648baf74e35
  1139. identifier: e55827a7-e8cf-4a04-87f6-f648baf74e35
  1140. measurementTechnique:
  1141. - name: analytical technique
  1142. schemaKey: MeasurementTechniqueType
  1143. - name: behavioral technique
  1144. schemaKey: MeasurementTechniqueType
  1145. path: sub-Plaid-warm-19-nachet/sub-Plaid-warm-19-nachet_ses-20230314T155900_behavior.nwb
  1146. schemaKey: Asset
  1147. schemaVersion: 0.6.4
  1148. variableMeasured:
  1149. - schemaKey: PropertyValue
  1150. value: SpatialSeries
  1151. - schemaKey: PropertyValue
  1152. value: Position
  1153. - schemaKey: PropertyValue
  1154. value: ProcessingModule
  1155. - schemaKey: PropertyValue
  1156. value: CompassDirection
  1157. wasAttributedTo:
  1158. - age:
  1159. schemaKey: PropertyValue
  1160. unitText: ISO-8601 duration
  1161. value: P5DT53940S
  1162. valueReference:
  1163. schemaKey: PropertyValue
  1164. value: dandi:BirthReference
  1165. identifier: Plaid_warm_19_nachet
  1166. schemaKey: Participant
  1167. sex:
  1168. name: Unknown
  1169. schemaKey: SexType
  1170. species:
  1171. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  1172. name: Danio rerio - Zebra fish
  1173. schemaKey: SpeciesType
  1174. wasGeneratedBy:
  1175. - description: Thermal plaid experiment
  1176. name: Acquisition session
  1177. schemaKey: Session
  1178. startDate: '2023-03-14T15:59:00-04:00'
  1179. - description: Metadata generated by DANDI cli
  1180. endDate: '2023-04-20T16:56:27.037531-04:00'
  1181. id: urn:uuid:b0764b34-48f6-40a0-a6d1-3b07265ade96
  1182. name: Metadata generation
  1183. schemaKey: Activity
  1184. startDate: '2023-04-20T16:56:27.037531-04:00'
  1185. wasAssociatedWith:
  1186. - identifier: RRID:SCR_019009
  1187. name: DANDI Command Line Interface
  1188. schemaKey: Software
  1189. url: https://github.com/dandi/dandi-cli
  1190. version: 0.53.0
  1191. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1192. access:
  1193. - schemaKey: AccessRequirements
  1194. status: dandi:OpenAccess
  1195. approach:
  1196. - name: behavioral approach
  1197. schemaKey: ApproachType
  1198. blobDateModified: '2023-04-20T16:50:00.678173-04:00'
  1199. contentSize: 35226312
  1200. contentUrl:
  1201. - https://api.dandiarchive.org/api/assets/5a5ecf0b-5387-4a18-bb17-c13f074ec29d/download/
  1202. - https://dandiarchive.s3.amazonaws.com/blobs/0cc/511/0cc5118a-1f87-4451-a5e2-179bdfec4fb0
  1203. dateModified: '2023-04-20T16:56:28.233767-04:00'
  1204. digest:
  1205. dandi:dandi-etag: 6ec76c774f307e2687456a83411926cb-1
  1206. dandi:sha2-256: be5c4f1ef4a41d814f84e2696f8b25c174ae23d5e37f6b2541df57b5752e5ee8
  1207. encodingFormat: application/x-nwb
  1208. id: dandiasset:5a5ecf0b-5387-4a18-bb17-c13f074ec29d
  1209. identifier: 5a5ecf0b-5387-4a18-bb17-c13f074ec29d
  1210. measurementTechnique:
  1211. - name: analytical technique
  1212. schemaKey: MeasurementTechniqueType
  1213. - name: behavioral technique
  1214. schemaKey: MeasurementTechniqueType
  1215. path: sub-Plaid-warm-20-nachet/sub-Plaid-warm-20-nachet_ses-20230315T114600_behavior.nwb
  1216. schemaKey: Asset
  1217. schemaVersion: 0.6.4
  1218. variableMeasured:
  1219. - schemaKey: PropertyValue
  1220. value: SpatialSeries
  1221. - schemaKey: PropertyValue
  1222. value: Position
  1223. - schemaKey: PropertyValue
  1224. value: ProcessingModule
  1225. - schemaKey: PropertyValue
  1226. value: CompassDirection
  1227. wasAttributedTo:
  1228. - age:
  1229. schemaKey: PropertyValue
  1230. unitText: ISO-8601 duration
  1231. value: P6DT38760S
  1232. valueReference:
  1233. schemaKey: PropertyValue
  1234. value: dandi:BirthReference
  1235. identifier: Plaid_warm_20_nachet
  1236. schemaKey: Participant
  1237. sex:
  1238. name: Unknown
  1239. schemaKey: SexType
  1240. species:
  1241. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  1242. name: Danio rerio - Zebra fish
  1243. schemaKey: SpeciesType
  1244. wasGeneratedBy:
  1245. - description: Thermal plaid experiment
  1246. name: Acquisition session
  1247. schemaKey: Session
  1248. startDate: '2023-03-15T11:46:00-04:00'
  1249. - description: Metadata generated by DANDI cli
  1250. endDate: '2023-04-20T16:56:28.233767-04:00'
  1251. id: urn:uuid:67dfddea-d0f2-4d21-934e-0826d87f41f7
  1252. name: Metadata generation
  1253. schemaKey: Activity
  1254. startDate: '2023-04-20T16:56:28.223705-04:00'
  1255. wasAssociatedWith:
  1256. - identifier: RRID:SCR_019009
  1257. name: DANDI Command Line Interface
  1258. schemaKey: Software
  1259. url: https://github.com/dandi/dandi-cli
  1260. version: 0.53.0
  1261. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1262. access:
  1263. - schemaKey: AccessRequirements
  1264. status: dandi:OpenAccess
  1265. approach:
  1266. - name: behavioral approach
  1267. schemaKey: ApproachType
  1268. blobDateModified: '2023-04-20T16:50:12.813590-04:00'
  1269. contentSize: 35527076
  1270. contentUrl:
  1271. - https://api.dandiarchive.org/api/assets/20e4f6a2-2e74-4328-bd3a-81ab11395f2b/download/
  1272. - https://dandiarchive.s3.amazonaws.com/blobs/559/ca3/559ca3c0-456a-4699-aa7f-f471c311b8b1
  1273. dateModified: '2023-04-20T16:56:28.821705-04:00'
  1274. digest:
  1275. dandi:dandi-etag: f1799d69e09bf9e9e89133594e142448-1
  1276. dandi:sha2-256: 9242aa7c12bac4ab3a5868cb48bd0fe92a27e2308c8e5ea50bbc230b55f2e4b8
  1277. encodingFormat: application/x-nwb
  1278. id: dandiasset:20e4f6a2-2e74-4328-bd3a-81ab11395f2b
  1279. identifier: 20e4f6a2-2e74-4328-bd3a-81ab11395f2b
  1280. measurementTechnique:
  1281. - name: analytical technique
  1282. schemaKey: MeasurementTechniqueType
  1283. - name: behavioral technique
  1284. schemaKey: MeasurementTechniqueType
  1285. path: sub-Plaid-warm-21-nachet/sub-Plaid-warm-21-nachet_ses-20230315T133600_behavior.nwb
  1286. schemaKey: Asset
  1287. schemaVersion: 0.6.4
  1288. variableMeasured:
  1289. - schemaKey: PropertyValue
  1290. value: SpatialSeries
  1291. - schemaKey: PropertyValue
  1292. value: Position
  1293. - schemaKey: PropertyValue
  1294. value: ProcessingModule
  1295. - schemaKey: PropertyValue
  1296. value: CompassDirection
  1297. wasAttributedTo:
  1298. - age:
  1299. schemaKey: PropertyValue
  1300. unitText: ISO-8601 duration
  1301. value: P6DT45360S
  1302. valueReference:
  1303. schemaKey: PropertyValue
  1304. value: dandi:BirthReference
  1305. identifier: Plaid_warm_21_nachet
  1306. schemaKey: Participant
  1307. sex:
  1308. name: Unknown
  1309. schemaKey: SexType
  1310. species:
  1311. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  1312. name: Danio rerio - Zebra fish
  1313. schemaKey: SpeciesType
  1314. wasGeneratedBy:
  1315. - description: Thermal plaid experiment
  1316. name: Acquisition session
  1317. schemaKey: Session
  1318. startDate: '2023-03-15T13:36:00-04:00'
  1319. - description: Metadata generated by DANDI cli
  1320. endDate: '2023-04-20T16:56:28.821705-04:00'
  1321. id: urn:uuid:77a0160d-cc3d-47eb-b462-fd52d88c617d
  1322. name: Metadata generation
  1323. schemaKey: Activity
  1324. startDate: '2023-04-20T16:56:28.790667-04:00'
  1325. wasAssociatedWith:
  1326. - identifier: RRID:SCR_019009
  1327. name: DANDI Command Line Interface
  1328. schemaKey: Software
  1329. url: https://github.com/dandi/dandi-cli
  1330. version: 0.53.0
  1331. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1332. access:
  1333. - schemaKey: AccessRequirements
  1334. status: dandi:OpenAccess
  1335. approach:
  1336. - name: behavioral approach
  1337. schemaKey: ApproachType
  1338. blobDateModified: '2023-04-20T16:50:24.883146-04:00'
  1339. contentSize: 35319431
  1340. contentUrl:
  1341. - https://api.dandiarchive.org/api/assets/e9e29b40-d64b-48c5-aa27-49d54a5b7f12/download/
  1342. - https://dandiarchive.s3.amazonaws.com/blobs/0dc/1e7/0dc1e701-98b1-4831-9a82-ca166b4884d5
  1343. dateModified: '2023-04-20T16:56:29.531557-04:00'
  1344. digest:
  1345. dandi:dandi-etag: 999aab4e514ebe22f77e1437400a06f7-1
  1346. dandi:sha2-256: 8375315a868d64473c1a3cc3494dea2d935cde1105798a745022d8e1b74203e3
  1347. encodingFormat: application/x-nwb
  1348. id: dandiasset:e9e29b40-d64b-48c5-aa27-49d54a5b7f12
  1349. identifier: e9e29b40-d64b-48c5-aa27-49d54a5b7f12
  1350. measurementTechnique:
  1351. - name: analytical technique
  1352. schemaKey: MeasurementTechniqueType
  1353. - name: behavioral technique
  1354. schemaKey: MeasurementTechniqueType
  1355. path: sub-Plaid-warm-22-nachet/sub-Plaid-warm-22-nachet_ses-20230315T161000_behavior.nwb
  1356. schemaKey: Asset
  1357. schemaVersion: 0.6.4
  1358. variableMeasured:
  1359. - schemaKey: PropertyValue
  1360. value: SpatialSeries
  1361. - schemaKey: PropertyValue
  1362. value: Position
  1363. - schemaKey: PropertyValue
  1364. value: ProcessingModule
  1365. - schemaKey: PropertyValue
  1366. value: CompassDirection
  1367. wasAttributedTo:
  1368. - age:
  1369. schemaKey: PropertyValue
  1370. unitText: ISO-8601 duration
  1371. value: P6DT54600S
  1372. valueReference:
  1373. schemaKey: PropertyValue
  1374. value: dandi:BirthReference
  1375. identifier: Plaid_warm_22_nachet
  1376. schemaKey: Participant
  1377. sex:
  1378. name: Unknown
  1379. schemaKey: SexType
  1380. species:
  1381. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  1382. name: Danio rerio - Zebra fish
  1383. schemaKey: SpeciesType
  1384. wasGeneratedBy:
  1385. - description: Thermal plaid experiment
  1386. name: Acquisition session
  1387. schemaKey: Session
  1388. startDate: '2023-03-15T16:10:00-04:00'
  1389. - description: Metadata generated by DANDI cli
  1390. endDate: '2023-04-20T16:56:29.531557-04:00'
  1391. id: urn:uuid:96286ba2-91f3-4887-b5d4-6bee1d625fce
  1392. name: Metadata generation
  1393. schemaKey: Activity
  1394. startDate: '2023-04-20T16:56:29.481210-04:00'
  1395. wasAssociatedWith:
  1396. - identifier: RRID:SCR_019009
  1397. name: DANDI Command Line Interface
  1398. schemaKey: Software
  1399. url: https://github.com/dandi/dandi-cli
  1400. version: 0.53.0
  1401. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1402. access:
  1403. - schemaKey: AccessRequirements
  1404. status: dandi:OpenAccess
  1405. approach:
  1406. - name: behavioral approach
  1407. schemaKey: ApproachType
  1408. blobDateModified: '2023-04-20T16:50:36.981017-04:00'
  1409. contentSize: 35306378
  1410. contentUrl:
  1411. - https://api.dandiarchive.org/api/assets/9eb2eb52-7f87-4464-8a29-1316089d8038/download/
  1412. - https://dandiarchive.s3.amazonaws.com/blobs/397/690/39769041-b254-45c3-be4a-9c38fdd9dfbf
  1413. dateModified: '2023-04-20T16:56:31.022634-04:00'
  1414. digest:
  1415. dandi:dandi-etag: 2b3cd58243a4a7c944b06e71e00ed25d-1
  1416. dandi:sha2-256: 373a426c74eb7c658b65d31a24ae016722afdfdc0cfbbb6df87c23b8cfc80bdb
  1417. encodingFormat: application/x-nwb
  1418. id: dandiasset:9eb2eb52-7f87-4464-8a29-1316089d8038
  1419. identifier: 9eb2eb52-7f87-4464-8a29-1316089d8038
  1420. measurementTechnique:
  1421. - name: analytical technique
  1422. schemaKey: MeasurementTechniqueType
  1423. - name: behavioral technique
  1424. schemaKey: MeasurementTechniqueType
  1425. path: sub-Plaid-warm-23-nachet/sub-Plaid-warm-23-nachet_ses-20230327T121900_behavior.nwb
  1426. schemaKey: Asset
  1427. schemaVersion: 0.6.4
  1428. variableMeasured:
  1429. - schemaKey: PropertyValue
  1430. value: SpatialSeries
  1431. - schemaKey: PropertyValue
  1432. value: Position
  1433. - schemaKey: PropertyValue
  1434. value: ProcessingModule
  1435. - schemaKey: PropertyValue
  1436. value: CompassDirection
  1437. wasAttributedTo:
  1438. - age:
  1439. schemaKey: PropertyValue
  1440. unitText: ISO-8601 duration
  1441. value: P6DT44340S
  1442. valueReference:
  1443. schemaKey: PropertyValue
  1444. value: dandi:BirthReference
  1445. identifier: Plaid_warm_23_nachet
  1446. schemaKey: Participant
  1447. sex:
  1448. name: Unknown
  1449. schemaKey: SexType
  1450. species:
  1451. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  1452. name: Danio rerio - Zebra fish
  1453. schemaKey: SpeciesType
  1454. wasGeneratedBy:
  1455. - description: Thermal plaid experiment
  1456. name: Acquisition session
  1457. schemaKey: Session
  1458. startDate: '2023-03-27T12:19:00-04:00'
  1459. - description: Metadata generated by DANDI cli
  1460. endDate: '2023-04-20T16:56:31.022634-04:00'
  1461. id: urn:uuid:8032a648-1329-48f5-8813-adb47f5139ae
  1462. name: Metadata generation
  1463. schemaKey: Activity
  1464. startDate: '2023-04-20T16:56:31.022634-04:00'
  1465. wasAssociatedWith:
  1466. - identifier: RRID:SCR_019009
  1467. name: DANDI Command Line Interface
  1468. schemaKey: Software
  1469. url: https://github.com/dandi/dandi-cli
  1470. version: 0.53.0
  1471. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1472. access:
  1473. - schemaKey: AccessRequirements
  1474. status: dandi:OpenAccess
  1475. approach:
  1476. - name: behavioral approach
  1477. schemaKey: ApproachType
  1478. blobDateModified: '2023-04-20T16:50:49.142800-04:00'
  1479. contentSize: 35166213
  1480. contentUrl:
  1481. - https://api.dandiarchive.org/api/assets/af69a022-a323-4bcf-9d6f-f4e06d136e1e/download/
  1482. - https://dandiarchive.s3.amazonaws.com/blobs/114/cff/114cff60-52dd-4279-8830-9810129e26e8
  1483. dateModified: '2023-04-20T16:56:31.438540-04:00'
  1484. digest:
  1485. dandi:dandi-etag: f0cf02ca4e65ea8a54599db478bf468d-1
  1486. dandi:sha2-256: f88a386c0ac4ed7a38b9b8cdab51308f30c5848589e6e352f4ed0c22e01dc93f
  1487. encodingFormat: application/x-nwb
  1488. id: dandiasset:af69a022-a323-4bcf-9d6f-f4e06d136e1e
  1489. identifier: af69a022-a323-4bcf-9d6f-f4e06d136e1e
  1490. measurementTechnique:
  1491. - name: analytical technique
  1492. schemaKey: MeasurementTechniqueType
  1493. - name: behavioral technique
  1494. schemaKey: MeasurementTechniqueType
  1495. path: sub-Plaid-warm-24-nachet/sub-Plaid-warm-24-nachet_ses-20230327T141000_behavior.nwb
  1496. schemaKey: Asset
  1497. schemaVersion: 0.6.4
  1498. variableMeasured:
  1499. - schemaKey: PropertyValue
  1500. value: SpatialSeries
  1501. - schemaKey: PropertyValue
  1502. value: Position
  1503. - schemaKey: PropertyValue
  1504. value: ProcessingModule
  1505. - schemaKey: PropertyValue
  1506. value: CompassDirection
  1507. wasAttributedTo:
  1508. - age:
  1509. schemaKey: PropertyValue
  1510. unitText: ISO-8601 duration
  1511. value: P6DT51000S
  1512. valueReference:
  1513. schemaKey: PropertyValue
  1514. value: dandi:BirthReference
  1515. identifier: Plaid_warm_24_nachet
  1516. schemaKey: Participant
  1517. sex:
  1518. name: Unknown
  1519. schemaKey: SexType
  1520. species:
  1521. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  1522. name: Danio rerio - Zebra fish
  1523. schemaKey: SpeciesType
  1524. wasGeneratedBy:
  1525. - description: Thermal plaid experiment
  1526. name: Acquisition session
  1527. schemaKey: Session
  1528. startDate: '2023-03-27T14:10:00-04:00'
  1529. - description: Metadata generated by DANDI cli
  1530. endDate: '2023-04-20T16:56:31.438540-04:00'
  1531. id: urn:uuid:bbe32f49-4599-47d8-91dd-0f376a925b36
  1532. name: Metadata generation
  1533. schemaKey: Activity
  1534. startDate: '2023-04-20T16:56:31.428476-04:00'
  1535. wasAssociatedWith:
  1536. - identifier: RRID:SCR_019009
  1537. name: DANDI Command Line Interface
  1538. schemaKey: Software
  1539. url: https://github.com/dandi/dandi-cli
  1540. version: 0.53.0
  1541. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1542. access:
  1543. - schemaKey: AccessRequirements
  1544. status: dandi:OpenAccess
  1545. approach:
  1546. - name: behavioral approach
  1547. schemaKey: ApproachType
  1548. blobDateModified: '2023-04-20T16:51:01.299817-04:00'
  1549. contentSize: 34915096
  1550. contentUrl:
  1551. - https://api.dandiarchive.org/api/assets/13063993-9739-47c3-8792-c409c724e316/download/
  1552. - https://dandiarchive.s3.amazonaws.com/blobs/b5d/645/b5d6459d-79d8-425d-8675-6c1e27419ea1
  1553. dateModified: '2023-04-20T16:56:31.887833-04:00'
  1554. digest:
  1555. dandi:dandi-etag: 3ebd49a0d7b3635b5535eb3f1cfeed88-1
  1556. dandi:sha2-256: 857c3ef38728ee26c6d995a43843cc78c2684a091723af7f760a7bf0b3db81bb
  1557. encodingFormat: application/x-nwb
  1558. id: dandiasset:13063993-9739-47c3-8792-c409c724e316
  1559. identifier: 13063993-9739-47c3-8792-c409c724e316
  1560. measurementTechnique:
  1561. - name: analytical technique
  1562. schemaKey: MeasurementTechniqueType
  1563. - name: behavioral technique
  1564. schemaKey: MeasurementTechniqueType
  1565. path: sub-Plaid-warm-25-nachet/sub-Plaid-warm-25-nachet_ses-20230327T155800_behavior.nwb
  1566. schemaKey: Asset
  1567. schemaVersion: 0.6.4
  1568. variableMeasured:
  1569. - schemaKey: PropertyValue
  1570. value: SpatialSeries
  1571. - schemaKey: PropertyValue
  1572. value: Position
  1573. - schemaKey: PropertyValue
  1574. value: ProcessingModule
  1575. - schemaKey: PropertyValue
  1576. value: CompassDirection
  1577. wasAttributedTo:
  1578. - age:
  1579. schemaKey: PropertyValue
  1580. unitText: ISO-8601 duration
  1581. value: P6DT57480S
  1582. valueReference:
  1583. schemaKey: PropertyValue
  1584. value: dandi:BirthReference
  1585. identifier: Plaid_warm_25_nachet
  1586. schemaKey: Participant
  1587. sex:
  1588. name: Unknown
  1589. schemaKey: SexType
  1590. species:
  1591. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  1592. name: Danio rerio - Zebra fish
  1593. schemaKey: SpeciesType
  1594. wasGeneratedBy:
  1595. - description: Thermal plaid experiment
  1596. name: Acquisition session
  1597. schemaKey: Session
  1598. startDate: '2023-03-27T15:58:00-04:00'
  1599. - description: Metadata generated by DANDI cli
  1600. endDate: '2023-04-20T16:56:31.887833-04:00'
  1601. id: urn:uuid:dec12377-7687-4878-92b5-69ea1e049ce8
  1602. name: Metadata generation
  1603. schemaKey: Activity
  1604. startDate: '2023-04-20T16:56:31.887833-04:00'
  1605. wasAssociatedWith:
  1606. - identifier: RRID:SCR_019009
  1607. name: DANDI Command Line Interface
  1608. schemaKey: Software
  1609. url: https://github.com/dandi/dandi-cli
  1610. version: 0.53.0
  1611. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1612. access:
  1613. - schemaKey: AccessRequirements
  1614. status: dandi:OpenAccess
  1615. approach:
  1616. - name: behavioral approach
  1617. schemaKey: ApproachType
  1618. blobDateModified: '2023-04-20T16:51:13.512083-04:00'
  1619. contentSize: 34915734
  1620. contentUrl:
  1621. - https://api.dandiarchive.org/api/assets/c77b7754-7f99-4ed9-aefc-e9d1f751a437/download/
  1622. - https://dandiarchive.s3.amazonaws.com/blobs/015/0a3/0150a3a4-949b-4b5c-9647-07e73b95c3f8
  1623. dateModified: '2023-04-20T16:56:34.521173-04:00'
  1624. digest:
  1625. dandi:dandi-etag: 95f6f7608d67ebb432ce5e2cafcd140a-1
  1626. dandi:sha2-256: 033486b4a5019176e2c47b3e107e7f9699f3e6b64d4ddeafdf1dee73964bca56
  1627. encodingFormat: application/x-nwb
  1628. id: dandiasset:c77b7754-7f99-4ed9-aefc-e9d1f751a437
  1629. identifier: c77b7754-7f99-4ed9-aefc-e9d1f751a437
  1630. measurementTechnique:
  1631. - name: analytical technique
  1632. schemaKey: MeasurementTechniqueType
  1633. - name: behavioral technique
  1634. schemaKey: MeasurementTechniqueType
  1635. path: sub-Plaid-warm-26-nachet/sub-Plaid-warm-26-nachet_ses-20230328T092200_behavior.nwb
  1636. schemaKey: Asset
  1637. schemaVersion: 0.6.4
  1638. variableMeasured:
  1639. - schemaKey: PropertyValue
  1640. value: SpatialSeries
  1641. - schemaKey: PropertyValue
  1642. value: Position
  1643. - schemaKey: PropertyValue
  1644. value: ProcessingModule
  1645. - schemaKey: PropertyValue
  1646. value: CompassDirection
  1647. wasAttributedTo:
  1648. - age:
  1649. schemaKey: PropertyValue
  1650. unitText: ISO-8601 duration
  1651. value: P7DT33720S
  1652. valueReference:
  1653. schemaKey: PropertyValue
  1654. value: dandi:BirthReference
  1655. identifier: Plaid_warm_26_nachet
  1656. schemaKey: Participant
  1657. sex:
  1658. name: Unknown
  1659. schemaKey: SexType
  1660. species:
  1661. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  1662. name: Danio rerio - Zebra fish
  1663. schemaKey: SpeciesType
  1664. wasGeneratedBy:
  1665. - description: Thermal plaid experiment
  1666. name: Acquisition session
  1667. schemaKey: Session
  1668. startDate: '2023-03-28T09:22:00-04:00'
  1669. - description: Metadata generated by DANDI cli
  1670. endDate: '2023-04-20T16:56:34.521173-04:00'
  1671. id: urn:uuid:f331b3da-6672-48c3-bdb4-0caba0cbd8c9
  1672. name: Metadata generation
  1673. schemaKey: Activity
  1674. startDate: '2023-04-20T16:56:34.511520-04:00'
  1675. wasAssociatedWith:
  1676. - identifier: RRID:SCR_019009
  1677. name: DANDI Command Line Interface
  1678. schemaKey: Software
  1679. url: https://github.com/dandi/dandi-cli
  1680. version: 0.53.0
  1681. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1682. access:
  1683. - schemaKey: AccessRequirements
  1684. status: dandi:OpenAccess
  1685. approach:
  1686. - name: behavioral approach
  1687. schemaKey: ApproachType
  1688. blobDateModified: '2023-04-20T16:51:25.600758-04:00'
  1689. contentSize: 35048449
  1690. contentUrl:
  1691. - https://api.dandiarchive.org/api/assets/c7501df9-2f2e-45ab-887c-8eae632aa828/download/
  1692. - https://dandiarchive.s3.amazonaws.com/blobs/fac/681/fac6813c-e06d-4cc0-9bd0-40a9985af43d
  1693. dateModified: '2023-04-20T16:56:34.921300-04:00'
  1694. digest:
  1695. dandi:dandi-etag: ca5ecaf44018903f324c3aa063d3ff89-1
  1696. dandi:sha2-256: 36f876e86bddda38cea5dfb995872d05a87b588a543f5a0f53bd384059707c01
  1697. encodingFormat: application/x-nwb
  1698. id: dandiasset:c7501df9-2f2e-45ab-887c-8eae632aa828
  1699. identifier: c7501df9-2f2e-45ab-887c-8eae632aa828
  1700. measurementTechnique:
  1701. - name: analytical technique
  1702. schemaKey: MeasurementTechniqueType
  1703. - name: behavioral technique
  1704. schemaKey: MeasurementTechniqueType
  1705. path: sub-Plaid-warm-27-nachet/sub-Plaid-warm-27-nachet_ses-20230328T113900_behavior.nwb
  1706. schemaKey: Asset
  1707. schemaVersion: 0.6.4
  1708. variableMeasured:
  1709. - schemaKey: PropertyValue
  1710. value: SpatialSeries
  1711. - schemaKey: PropertyValue
  1712. value: Position
  1713. - schemaKey: PropertyValue
  1714. value: ProcessingModule
  1715. - schemaKey: PropertyValue
  1716. value: CompassDirection
  1717. wasAttributedTo:
  1718. - age:
  1719. schemaKey: PropertyValue
  1720. unitText: ISO-8601 duration
  1721. value: P7DT41940S
  1722. valueReference:
  1723. schemaKey: PropertyValue
  1724. value: dandi:BirthReference
  1725. identifier: Plaid_warm_27_nachet
  1726. schemaKey: Participant
  1727. sex:
  1728. name: Unknown
  1729. schemaKey: SexType
  1730. species:
  1731. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  1732. name: Danio rerio - Zebra fish
  1733. schemaKey: SpeciesType
  1734. wasGeneratedBy:
  1735. - description: Thermal plaid experiment
  1736. name: Acquisition session
  1737. schemaKey: Session
  1738. startDate: '2023-03-28T11:39:00-04:00'
  1739. - description: Metadata generated by DANDI cli
  1740. endDate: '2023-04-20T16:56:34.921300-04:00'
  1741. id: urn:uuid:c405cd1a-4601-498b-946a-89dcb398c615
  1742. name: Metadata generation
  1743. schemaKey: Activity
  1744. startDate: '2023-04-20T16:56:34.921300-04:00'
  1745. wasAssociatedWith:
  1746. - identifier: RRID:SCR_019009
  1747. name: DANDI Command Line Interface
  1748. schemaKey: Software
  1749. url: https://github.com/dandi/dandi-cli
  1750. version: 0.53.0
  1751. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1752. access:
  1753. - schemaKey: AccessRequirements
  1754. status: dandi:OpenAccess
  1755. approach:
  1756. - name: behavioral approach
  1757. schemaKey: ApproachType
  1758. blobDateModified: '2023-04-20T16:51:37.691173-04:00'
  1759. contentSize: 35114551
  1760. contentUrl:
  1761. - https://api.dandiarchive.org/api/assets/d0f11c97-3465-40e7-8c8d-c28cfbd9b8e8/download/
  1762. - https://dandiarchive.s3.amazonaws.com/blobs/7a8/c18/7a8c185e-c271-411f-80e4-6be0b7e09fbe
  1763. dateModified: '2023-04-20T16:56:35.362064-04:00'
  1764. digest:
  1765. dandi:dandi-etag: d1d3b535bd9510faeb27e24bbdd0659e-1
  1766. dandi:sha2-256: 65ccd1ac9475741312e604f4f904744fb80337c84d594cba4420d726468c78a7
  1767. encodingFormat: application/x-nwb
  1768. id: dandiasset:d0f11c97-3465-40e7-8c8d-c28cfbd9b8e8
  1769. identifier: d0f11c97-3465-40e7-8c8d-c28cfbd9b8e8
  1770. measurementTechnique:
  1771. - name: analytical technique
  1772. schemaKey: MeasurementTechniqueType
  1773. - name: behavioral technique
  1774. schemaKey: MeasurementTechniqueType
  1775. path: sub-Plaid-warm-28-nachet/sub-Plaid-warm-28-nachet_ses-20230328T140700_behavior.nwb
  1776. schemaKey: Asset
  1777. schemaVersion: 0.6.4
  1778. variableMeasured:
  1779. - schemaKey: PropertyValue
  1780. value: SpatialSeries
  1781. - schemaKey: PropertyValue
  1782. value: Position
  1783. - schemaKey: PropertyValue
  1784. value: ProcessingModule
  1785. - schemaKey: PropertyValue
  1786. value: CompassDirection
  1787. wasAttributedTo:
  1788. - age:
  1789. schemaKey: PropertyValue
  1790. unitText: ISO-8601 duration
  1791. value: P7DT50820S
  1792. valueReference:
  1793. schemaKey: PropertyValue
  1794. value: dandi:BirthReference
  1795. identifier: Plaid_warm_28_nachet
  1796. schemaKey: Participant
  1797. sex:
  1798. name: Unknown
  1799. schemaKey: SexType
  1800. species:
  1801. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  1802. name: Danio rerio - Zebra fish
  1803. schemaKey: SpeciesType
  1804. wasGeneratedBy:
  1805. - description: Thermal plaid experiment
  1806. name: Acquisition session
  1807. schemaKey: Session
  1808. startDate: '2023-03-28T14:07:00-04:00'
  1809. - description: Metadata generated by DANDI cli
  1810. endDate: '2023-04-20T16:56:35.362064-04:00'
  1811. id: urn:uuid:6c055e6e-e7d0-4edc-b7db-325392e05781
  1812. name: Metadata generation
  1813. schemaKey: Activity
  1814. startDate: '2023-04-20T16:56:35.352063-04:00'
  1815. wasAssociatedWith:
  1816. - identifier: RRID:SCR_019009
  1817. name: DANDI Command Line Interface
  1818. schemaKey: Software
  1819. url: https://github.com/dandi/dandi-cli
  1820. version: 0.53.0
  1821. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1822. access:
  1823. - schemaKey: AccessRequirements
  1824. status: dandi:OpenAccess
  1825. approach:
  1826. - name: behavioral approach
  1827. schemaKey: ApproachType
  1828. blobDateModified: '2023-04-20T16:51:50.318187-04:00'
  1829. contentSize: 35322956
  1830. contentUrl:
  1831. - https://api.dandiarchive.org/api/assets/2628430b-2127-42d1-91ff-58153df5b97d/download/
  1832. - https://dandiarchive.s3.amazonaws.com/blobs/a68/49f/a6849f00-7721-4d70-beb3-fc92b406abf0
  1833. dateModified: '2023-04-20T16:56:37.281829-04:00'
  1834. digest:
  1835. dandi:dandi-etag: 3e443dc758cbff1ecc29bfa09f857275-1
  1836. dandi:sha2-256: a3a5115fd6733c1cb8d379ff98a637d26e2ce4de4dc4db49edd152f848d2d1e4
  1837. encodingFormat: application/x-nwb
  1838. id: dandiasset:2628430b-2127-42d1-91ff-58153df5b97d
  1839. identifier: 2628430b-2127-42d1-91ff-58153df5b97d
  1840. measurementTechnique:
  1841. - name: analytical technique
  1842. schemaKey: MeasurementTechniqueType
  1843. - name: behavioral technique
  1844. schemaKey: MeasurementTechniqueType
  1845. path: sub-Plaid-warm-29-nachet/sub-Plaid-warm-29-nachet_ses-20230404T120200_behavior.nwb
  1846. schemaKey: Asset
  1847. schemaVersion: 0.6.4
  1848. variableMeasured:
  1849. - schemaKey: PropertyValue
  1850. value: SpatialSeries
  1851. - schemaKey: PropertyValue
  1852. value: Position
  1853. - schemaKey: PropertyValue
  1854. value: ProcessingModule
  1855. - schemaKey: PropertyValue
  1856. value: CompassDirection
  1857. wasAttributedTo:
  1858. - age:
  1859. schemaKey: PropertyValue
  1860. unitText: ISO-8601 duration
  1861. value: P5DT43320S
  1862. valueReference:
  1863. schemaKey: PropertyValue
  1864. value: dandi:BirthReference
  1865. identifier: Plaid_warm_29_nachet
  1866. schemaKey: Participant
  1867. sex:
  1868. name: Unknown
  1869. schemaKey: SexType
  1870. species:
  1871. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  1872. name: Danio rerio - Zebra fish
  1873. schemaKey: SpeciesType
  1874. wasGeneratedBy:
  1875. - description: Thermal plaid experiment
  1876. name: Acquisition session
  1877. schemaKey: Session
  1878. startDate: '2023-04-04T12:02:00-04:00'
  1879. - description: Metadata generated by DANDI cli
  1880. endDate: '2023-04-20T16:56:37.281829-04:00'
  1881. id: urn:uuid:424c864b-b9dd-4a6e-b93f-3d2277f34a59
  1882. name: Metadata generation
  1883. schemaKey: Activity
  1884. startDate: '2023-04-20T16:56:37.271762-04:00'
  1885. wasAssociatedWith:
  1886. - identifier: RRID:SCR_019009
  1887. name: DANDI Command Line Interface
  1888. schemaKey: Software
  1889. url: https://github.com/dandi/dandi-cli
  1890. version: 0.53.0
  1891. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1892. access:
  1893. - schemaKey: AccessRequirements
  1894. status: dandi:OpenAccess
  1895. approach:
  1896. - name: behavioral approach
  1897. schemaKey: ApproachType
  1898. blobDateModified: '2023-04-20T16:52:02.311764-04:00'
  1899. contentSize: 33975546
  1900. contentUrl:
  1901. - https://api.dandiarchive.org/api/assets/82446b5b-3e1f-413b-bb51-6806522ecd9a/download/
  1902. - https://dandiarchive.s3.amazonaws.com/blobs/e4e/68c/e4e68c10-2616-48c6-8085-33381dae113f
  1903. dateModified: '2023-04-20T16:56:37.998752-04:00'
  1904. digest:
  1905. dandi:dandi-etag: 2095043d79873cc03950461a6d342f7d-1
  1906. dandi:sha2-256: c430bf36fcb60ea73458c7d38e62387c82fc6fffc92a3d3443b77f9148d72ab5
  1907. encodingFormat: application/x-nwb
  1908. id: dandiasset:82446b5b-3e1f-413b-bb51-6806522ecd9a
  1909. identifier: 82446b5b-3e1f-413b-bb51-6806522ecd9a
  1910. measurementTechnique:
  1911. - name: analytical technique
  1912. schemaKey: MeasurementTechniqueType
  1913. - name: behavioral technique
  1914. schemaKey: MeasurementTechniqueType
  1915. path: sub-Plaid-warm-30-nachet/sub-Plaid-warm-30-nachet_ses-20230404T140600_behavior.nwb
  1916. schemaKey: Asset
  1917. schemaVersion: 0.6.4
  1918. variableMeasured:
  1919. - schemaKey: PropertyValue
  1920. value: SpatialSeries
  1921. - schemaKey: PropertyValue
  1922. value: Position
  1923. - schemaKey: PropertyValue
  1924. value: ProcessingModule
  1925. - schemaKey: PropertyValue
  1926. value: CompassDirection
  1927. wasAttributedTo:
  1928. - age:
  1929. schemaKey: PropertyValue
  1930. unitText: ISO-8601 duration
  1931. value: P5DT50760S
  1932. valueReference:
  1933. schemaKey: PropertyValue
  1934. value: dandi:BirthReference
  1935. identifier: Plaid_warm_30_nachet
  1936. schemaKey: Participant
  1937. sex:
  1938. name: Unknown
  1939. schemaKey: SexType
  1940. species:
  1941. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  1942. name: Danio rerio - Zebra fish
  1943. schemaKey: SpeciesType
  1944. wasGeneratedBy:
  1945. - description: Thermal plaid experiment
  1946. name: Acquisition session
  1947. schemaKey: Session
  1948. startDate: '2023-04-04T14:06:00-04:00'
  1949. - description: Metadata generated by DANDI cli
  1950. endDate: '2023-04-20T16:56:37.998752-04:00'
  1951. id: urn:uuid:9035c28a-7158-4c47-aba7-9ee12a2ac23a
  1952. name: Metadata generation
  1953. schemaKey: Activity
  1954. startDate: '2023-04-20T16:56:37.998752-04:00'
  1955. wasAssociatedWith:
  1956. - identifier: RRID:SCR_019009
  1957. name: DANDI Command Line Interface
  1958. schemaKey: Software
  1959. url: https://github.com/dandi/dandi-cli
  1960. version: 0.53.0
  1961. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1962. access:
  1963. - schemaKey: AccessRequirements
  1964. status: dandi:OpenAccess
  1965. approach:
  1966. - name: behavioral approach
  1967. schemaKey: ApproachType
  1968. blobDateModified: '2023-04-20T16:52:14.381345-04:00'
  1969. contentSize: 35280161
  1970. contentUrl:
  1971. - https://api.dandiarchive.org/api/assets/4bfa02ce-db85-4fb0-b084-92c88b338517/download/
  1972. - https://dandiarchive.s3.amazonaws.com/blobs/8c4/5dd/8c45dd59-1526-40cb-b677-a593f95b8c16
  1973. dateModified: '2023-04-20T16:56:38.434517-04:00'
  1974. digest:
  1975. dandi:dandi-etag: 17896650a3949eee576ee4ade3c61260-1
  1976. dandi:sha2-256: 280d98157e44980b3f08dbbb07057915025286580370730c63503927d5ffc8dc
  1977. encodingFormat: application/x-nwb
  1978. id: dandiasset:4bfa02ce-db85-4fb0-b084-92c88b338517
  1979. identifier: 4bfa02ce-db85-4fb0-b084-92c88b338517
  1980. measurementTechnique:
  1981. - name: analytical technique
  1982. schemaKey: MeasurementTechniqueType
  1983. - name: behavioral technique
  1984. schemaKey: MeasurementTechniqueType
  1985. path: sub-Plaid-warm-31-nachet/sub-Plaid-warm-31-nachet_ses-20230404T160900_behavior.nwb
  1986. schemaKey: Asset
  1987. schemaVersion: 0.6.4
  1988. variableMeasured:
  1989. - schemaKey: PropertyValue
  1990. value: SpatialSeries
  1991. - schemaKey: PropertyValue
  1992. value: Position
  1993. - schemaKey: PropertyValue
  1994. value: ProcessingModule
  1995. - schemaKey: PropertyValue
  1996. value: CompassDirection
  1997. wasAttributedTo:
  1998. - age:
  1999. schemaKey: PropertyValue
  2000. unitText: ISO-8601 duration
  2001. value: P5DT58140S
  2002. valueReference:
  2003. schemaKey: PropertyValue
  2004. value: dandi:BirthReference
  2005. identifier: Plaid_warm_31_nachet
  2006. schemaKey: Participant
  2007. sex:
  2008. name: Unknown
  2009. schemaKey: SexType
  2010. species:
  2011. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  2012. name: Danio rerio - Zebra fish
  2013. schemaKey: SpeciesType
  2014. wasGeneratedBy:
  2015. - description: Thermal plaid experiment
  2016. name: Acquisition session
  2017. schemaKey: Session
  2018. startDate: '2023-04-04T16:09:00-04:00'
  2019. - description: Metadata generated by DANDI cli
  2020. endDate: '2023-04-20T16:56:38.434517-04:00'
  2021. id: urn:uuid:c9e35ccb-142b-40c3-9071-529c61159db7
  2022. name: Metadata generation
  2023. schemaKey: Activity
  2024. startDate: '2023-04-20T16:56:38.426475-04:00'
  2025. wasAssociatedWith:
  2026. - identifier: RRID:SCR_019009
  2027. name: DANDI Command Line Interface
  2028. schemaKey: Software
  2029. url: https://github.com/dandi/dandi-cli
  2030. version: 0.53.0
  2031. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2032. access:
  2033. - schemaKey: AccessRequirements
  2034. status: dandi:OpenAccess
  2035. approach:
  2036. - name: behavioral approach
  2037. schemaKey: ApproachType
  2038. blobDateModified: '2023-04-20T16:52:26.397921-04:00'
  2039. contentSize: 35334362
  2040. contentUrl:
  2041. - https://api.dandiarchive.org/api/assets/883ea45e-38bb-4b26-b435-152204d5c418/download/
  2042. - https://dandiarchive.s3.amazonaws.com/blobs/e88/819/e8881977-3780-4502-b82f-2d2afd8fec34
  2043. dateModified: '2023-04-20T16:56:40.522053-04:00'
  2044. digest:
  2045. dandi:dandi-etag: 8e3e16666d83fc71e9144d3c17331f26-1
  2046. dandi:sha2-256: 032084a6fd23cd7f11012fc5388f78e7090fbdf45df0d15e147f311c090305c1
  2047. encodingFormat: application/x-nwb
  2048. id: dandiasset:883ea45e-38bb-4b26-b435-152204d5c418
  2049. identifier: 883ea45e-38bb-4b26-b435-152204d5c418
  2050. measurementTechnique:
  2051. - name: analytical technique
  2052. schemaKey: MeasurementTechniqueType
  2053. - name: behavioral technique
  2054. schemaKey: MeasurementTechniqueType
  2055. path: sub-Plaid-warm-32-nachet/sub-Plaid-warm-32-nachet_ses-20230411T111900_behavior.nwb
  2056. schemaKey: Asset
  2057. schemaVersion: 0.6.4
  2058. variableMeasured:
  2059. - schemaKey: PropertyValue
  2060. value: SpatialSeries
  2061. - schemaKey: PropertyValue
  2062. value: Position
  2063. - schemaKey: PropertyValue
  2064. value: ProcessingModule
  2065. - schemaKey: PropertyValue
  2066. value: CompassDirection
  2067. wasAttributedTo:
  2068. - age:
  2069. schemaKey: PropertyValue
  2070. unitText: ISO-8601 duration
  2071. value: P5DT40740S
  2072. valueReference:
  2073. schemaKey: PropertyValue
  2074. value: dandi:BirthReference
  2075. identifier: Plaid_warm_32_nachet
  2076. schemaKey: Participant
  2077. sex:
  2078. name: Unknown
  2079. schemaKey: SexType
  2080. species:
  2081. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  2082. name: Danio rerio - Zebra fish
  2083. schemaKey: SpeciesType
  2084. wasGeneratedBy:
  2085. - description: Thermal plaid experiment
  2086. name: Acquisition session
  2087. schemaKey: Session
  2088. startDate: '2023-04-11T11:19:00-04:00'
  2089. - description: Metadata generated by DANDI cli
  2090. endDate: '2023-04-20T16:56:40.522053-04:00'
  2091. id: urn:uuid:f761eed0-f786-45c9-9047-a127fe807129
  2092. name: Metadata generation
  2093. schemaKey: Activity
  2094. startDate: '2023-04-20T16:56:40.514012-04:00'
  2095. wasAssociatedWith:
  2096. - identifier: RRID:SCR_019009
  2097. name: DANDI Command Line Interface
  2098. schemaKey: Software
  2099. url: https://github.com/dandi/dandi-cli
  2100. version: 0.53.0
  2101. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2102. access:
  2103. - schemaKey: AccessRequirements
  2104. status: dandi:OpenAccess
  2105. approach:
  2106. - name: behavioral approach
  2107. schemaKey: ApproachType
  2108. blobDateModified: '2023-04-20T16:52:38.487363-04:00'
  2109. contentSize: 35223883
  2110. contentUrl:
  2111. - https://api.dandiarchive.org/api/assets/01eb90ea-2a30-4253-947f-11c801c1cbdd/download/
  2112. - https://dandiarchive.s3.amazonaws.com/blobs/812/a2a/812a2a5f-f504-4a49-9f7f-91b4f2b36ad9
  2113. dateModified: '2023-04-20T16:56:40.730506-04:00'
  2114. digest:
  2115. dandi:dandi-etag: d08c54e3adfb8f3a2877ae1d9f2e1ab8-1
  2116. dandi:sha2-256: c3e5dc6b12bb1d6a514183007a9038cb2f8ebc37de147146e2dcd7e09e7287d6
  2117. encodingFormat: application/x-nwb
  2118. id: dandiasset:01eb90ea-2a30-4253-947f-11c801c1cbdd
  2119. identifier: 01eb90ea-2a30-4253-947f-11c801c1cbdd
  2120. measurementTechnique:
  2121. - name: analytical technique
  2122. schemaKey: MeasurementTechniqueType
  2123. - name: behavioral technique
  2124. schemaKey: MeasurementTechniqueType
  2125. path: sub-Plaid-warm-33-nachet/sub-Plaid-warm-33-nachet_ses-20230411T141400_behavior.nwb
  2126. schemaKey: Asset
  2127. schemaVersion: 0.6.4
  2128. variableMeasured:
  2129. - schemaKey: PropertyValue
  2130. value: SpatialSeries
  2131. - schemaKey: PropertyValue
  2132. value: Position
  2133. - schemaKey: PropertyValue
  2134. value: ProcessingModule
  2135. - schemaKey: PropertyValue
  2136. value: CompassDirection
  2137. wasAttributedTo:
  2138. - age:
  2139. schemaKey: PropertyValue
  2140. unitText: ISO-8601 duration
  2141. value: P5DT51240S
  2142. valueReference:
  2143. schemaKey: PropertyValue
  2144. value: dandi:BirthReference
  2145. identifier: Plaid_warm_33_nachet
  2146. schemaKey: Participant
  2147. sex:
  2148. name: Unknown
  2149. schemaKey: SexType
  2150. species:
  2151. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  2152. name: Danio rerio - Zebra fish
  2153. schemaKey: SpeciesType
  2154. wasGeneratedBy:
  2155. - description: Thermal plaid experiment
  2156. name: Acquisition session
  2157. schemaKey: Session
  2158. startDate: '2023-04-11T14:14:00-04:00'
  2159. - description: Metadata generated by DANDI cli
  2160. endDate: '2023-04-20T16:56:40.730506-04:00'
  2161. id: urn:uuid:8bd8cf00-605b-45d8-adda-3518c0506cf0
  2162. name: Metadata generation
  2163. schemaKey: Activity
  2164. startDate: '2023-04-20T16:56:40.730506-04:00'
  2165. wasAssociatedWith:
  2166. - identifier: RRID:SCR_019009
  2167. name: DANDI Command Line Interface
  2168. schemaKey: Software
  2169. url: https://github.com/dandi/dandi-cli
  2170. version: 0.53.0
  2171. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2172. access:
  2173. - schemaKey: AccessRequirements
  2174. status: dandi:OpenAccess
  2175. approach:
  2176. - name: behavioral approach
  2177. schemaKey: ApproachType
  2178. blobDateModified: '2023-04-20T16:52:50.602694-04:00'
  2179. contentSize: 35158803
  2180. contentUrl:
  2181. - https://api.dandiarchive.org/api/assets/73e7851c-55fe-4f5d-bd15-3ed0ca861fa3/download/
  2182. - https://dandiarchive.s3.amazonaws.com/blobs/2e3/331/2e3331ce-8b5d-4bd9-a4aa-d33e56ded4d4
  2183. dateModified: '2023-04-20T16:56:41.100053-04:00'
  2184. digest:
  2185. dandi:dandi-etag: 2e5d103c6b1a8d670e2125a3ce38ffc7-1
  2186. dandi:sha2-256: 9b215d335f08b6ad2b956ad6f39cf8d4a42f07ac818cd0f504a3015d5b4dae20
  2187. encodingFormat: application/x-nwb
  2188. id: dandiasset:73e7851c-55fe-4f5d-bd15-3ed0ca861fa3
  2189. identifier: 73e7851c-55fe-4f5d-bd15-3ed0ca861fa3
  2190. measurementTechnique:
  2191. - name: analytical technique
  2192. schemaKey: MeasurementTechniqueType
  2193. - name: behavioral technique
  2194. schemaKey: MeasurementTechniqueType
  2195. path: sub-Plaid-warm-34-nachet/sub-Plaid-warm-34-nachet_ses-20230411T160300_behavior.nwb
  2196. schemaKey: Asset
  2197. schemaVersion: 0.6.4
  2198. variableMeasured:
  2199. - schemaKey: PropertyValue
  2200. value: SpatialSeries
  2201. - schemaKey: PropertyValue
  2202. value: Position
  2203. - schemaKey: PropertyValue
  2204. value: ProcessingModule
  2205. - schemaKey: PropertyValue
  2206. value: CompassDirection
  2207. wasAttributedTo:
  2208. - age:
  2209. schemaKey: PropertyValue
  2210. unitText: ISO-8601 duration
  2211. value: P5DT57780S
  2212. valueReference:
  2213. schemaKey: PropertyValue
  2214. value: dandi:BirthReference
  2215. identifier: Plaid_warm_34_nachet
  2216. schemaKey: Participant
  2217. sex:
  2218. name: Unknown
  2219. schemaKey: SexType
  2220. species:
  2221. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  2222. name: Danio rerio - Zebra fish
  2223. schemaKey: SpeciesType
  2224. wasGeneratedBy:
  2225. - description: Thermal plaid experiment
  2226. name: Acquisition session
  2227. schemaKey: Session
  2228. startDate: '2023-04-11T16:03:00-04:00'
  2229. - description: Metadata generated by DANDI cli
  2230. endDate: '2023-04-20T16:56:41.100053-04:00'
  2231. id: urn:uuid:09eec538-97cf-4878-aa3e-ca7f780fda9e
  2232. name: Metadata generation
  2233. schemaKey: Activity
  2234. startDate: '2023-04-20T16:56:41.100053-04:00'
  2235. wasAssociatedWith:
  2236. - identifier: RRID:SCR_019009
  2237. name: DANDI Command Line Interface
  2238. schemaKey: Software
  2239. url: https://github.com/dandi/dandi-cli
  2240. version: 0.53.0
  2241. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2242. access:
  2243. - schemaKey: AccessRequirements
  2244. status: dandi:OpenAccess
  2245. approach:
  2246. - name: behavioral approach
  2247. schemaKey: ApproachType
  2248. blobDateModified: '2023-04-20T16:53:02.605340-04:00'
  2249. contentSize: 34998858
  2250. contentUrl:
  2251. - https://api.dandiarchive.org/api/assets/341ca54d-e391-4c6f-ae4f-f0935c4ea0cc/download/
  2252. - https://dandiarchive.s3.amazonaws.com/blobs/84b/3aa/84b3aa17-1f4e-4fb9-a26d-050f7e506a34
  2253. dateModified: '2023-04-20T16:56:42.463794-04:00'
  2254. digest:
  2255. dandi:dandi-etag: 009a32923fa4489d22ef5fb1ef36f0ad-1
  2256. dandi:sha2-256: 4cf842e5ac65fee468990c967dbf367af9e47d5a8955673529cacedf12badddd
  2257. encodingFormat: application/x-nwb
  2258. id: dandiasset:341ca54d-e391-4c6f-ae4f-f0935c4ea0cc
  2259. identifier: 341ca54d-e391-4c6f-ae4f-f0935c4ea0cc
  2260. measurementTechnique:
  2261. - name: analytical technique
  2262. schemaKey: MeasurementTechniqueType
  2263. - name: behavioral technique
  2264. schemaKey: MeasurementTechniqueType
  2265. path: sub-Plaid-warm-35-nachet/sub-Plaid-warm-35-nachet_ses-20230412T105400_behavior.nwb
  2266. schemaKey: Asset
  2267. schemaVersion: 0.6.4
  2268. variableMeasured:
  2269. - schemaKey: PropertyValue
  2270. value: SpatialSeries
  2271. - schemaKey: PropertyValue
  2272. value: Position
  2273. - schemaKey: PropertyValue
  2274. value: ProcessingModule
  2275. - schemaKey: PropertyValue
  2276. value: CompassDirection
  2277. wasAttributedTo:
  2278. - age:
  2279. schemaKey: PropertyValue
  2280. unitText: ISO-8601 duration
  2281. value: P6DT39240S
  2282. valueReference:
  2283. schemaKey: PropertyValue
  2284. value: dandi:BirthReference
  2285. identifier: Plaid_warm_35_nachet
  2286. schemaKey: Participant
  2287. sex:
  2288. name: Unknown
  2289. schemaKey: SexType
  2290. species:
  2291. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  2292. name: Danio rerio - Zebra fish
  2293. schemaKey: SpeciesType
  2294. wasGeneratedBy:
  2295. - description: Thermal plaid experiment
  2296. name: Acquisition session
  2297. schemaKey: Session
  2298. startDate: '2023-04-12T10:54:00-04:00'
  2299. - description: Metadata generated by DANDI cli
  2300. endDate: '2023-04-20T16:56:42.463794-04:00'
  2301. id: urn:uuid:9ac75e4c-d197-4f00-aaa3-22d4b1b005db
  2302. name: Metadata generation
  2303. schemaKey: Activity
  2304. startDate: '2023-04-20T16:56:42.463794-04:00'
  2305. wasAssociatedWith:
  2306. - identifier: RRID:SCR_019009
  2307. name: DANDI Command Line Interface
  2308. schemaKey: Software
  2309. url: https://github.com/dandi/dandi-cli
  2310. version: 0.53.0
  2311. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2312. access:
  2313. - schemaKey: AccessRequirements
  2314. status: dandi:OpenAccess
  2315. approach:
  2316. - name: behavioral approach
  2317. schemaKey: ApproachType
  2318. blobDateModified: '2023-04-20T16:53:14.744169-04:00'
  2319. contentSize: 35493041
  2320. contentUrl:
  2321. - https://api.dandiarchive.org/api/assets/8291f8df-9281-401f-9c81-55e7592fd6a4/download/
  2322. - https://dandiarchive.s3.amazonaws.com/blobs/31e/f4e/31ef4ead-cd10-46d3-953a-43f1873da342
  2323. dateModified: '2023-04-20T16:56:43.965753-04:00'
  2324. digest:
  2325. dandi:dandi-etag: ff83de71a658bf71bbd118c468320644-1
  2326. dandi:sha2-256: 4e87a714f9e7d69fddcdd21814bc802ee1afb4eb3e53939c55e9082a25e29a8d
  2327. encodingFormat: application/x-nwb
  2328. id: dandiasset:8291f8df-9281-401f-9c81-55e7592fd6a4
  2329. identifier: 8291f8df-9281-401f-9c81-55e7592fd6a4
  2330. measurementTechnique:
  2331. - name: analytical technique
  2332. schemaKey: MeasurementTechniqueType
  2333. - name: behavioral technique
  2334. schemaKey: MeasurementTechniqueType
  2335. path: sub-Plaid-warm-36-nachet/sub-Plaid-warm-36-nachet_ses-20230412T124500_behavior.nwb
  2336. schemaKey: Asset
  2337. schemaVersion: 0.6.4
  2338. variableMeasured:
  2339. - schemaKey: PropertyValue
  2340. value: SpatialSeries
  2341. - schemaKey: PropertyValue
  2342. value: Position
  2343. - schemaKey: PropertyValue
  2344. value: ProcessingModule
  2345. - schemaKey: PropertyValue
  2346. value: CompassDirection
  2347. wasAttributedTo:
  2348. - age:
  2349. schemaKey: PropertyValue
  2350. unitText: ISO-8601 duration
  2351. value: P6DT45900S
  2352. valueReference:
  2353. schemaKey: PropertyValue
  2354. value: dandi:BirthReference
  2355. identifier: Plaid_warm_36_nachet
  2356. schemaKey: Participant
  2357. sex:
  2358. name: Unknown
  2359. schemaKey: SexType
  2360. species:
  2361. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  2362. name: Danio rerio - Zebra fish
  2363. schemaKey: SpeciesType
  2364. wasGeneratedBy:
  2365. - description: Thermal plaid experiment
  2366. name: Acquisition session
  2367. schemaKey: Session
  2368. startDate: '2023-04-12T12:45:00-04:00'
  2369. - description: Metadata generated by DANDI cli
  2370. endDate: '2023-04-20T16:56:43.965753-04:00'
  2371. id: urn:uuid:69b5bf70-3dba-40da-b9cd-2d283057626f
  2372. name: Metadata generation
  2373. schemaKey: Activity
  2374. startDate: '2023-04-20T16:56:43.955810-04:00'
  2375. wasAssociatedWith:
  2376. - identifier: RRID:SCR_019009
  2377. name: DANDI Command Line Interface
  2378. schemaKey: Software
  2379. url: https://github.com/dandi/dandi-cli
  2380. version: 0.53.0
  2381. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2382. access:
  2383. - schemaKey: AccessRequirements
  2384. status: dandi:OpenAccess
  2385. approach:
  2386. - name: behavioral approach
  2387. schemaKey: ApproachType
  2388. blobDateModified: '2023-04-20T16:48:24.298366-04:00'
  2389. contentSize: 34973225
  2390. contentUrl:
  2391. - https://api.dandiarchive.org/api/assets/8f645a5f-e93d-44f9-8e1f-9b505180b2f5/download/
  2392. - https://dandiarchive.s3.amazonaws.com/blobs/ce0/b6a/ce0b6a8a-447b-4ecc-a932-11cea54a7104
  2393. dateModified: '2023-04-20T16:56:22.250304-04:00'
  2394. digest:
  2395. dandi:dandi-etag: e3d8cf203037d21e3431748d26fe6cd3-1
  2396. dandi:sha2-256: 2fb8677484a7e929b020d1e3388b36a0f06bdb8f176ee9910623e1bd6da29c3f
  2397. encodingFormat: application/x-nwb
  2398. id: dandiasset:8f645a5f-e93d-44f9-8e1f-9b505180b2f5
  2399. identifier: 8f645a5f-e93d-44f9-8e1f-9b505180b2f5
  2400. measurementTechnique:
  2401. - name: analytical technique
  2402. schemaKey: MeasurementTechniqueType
  2403. - name: behavioral technique
  2404. schemaKey: MeasurementTechniqueType
  2405. path: sub-Plaid-warm-12-nachet/sub-Plaid-warm-12-nachet_ses-20230307T134300_behavior.nwb
  2406. schemaKey: Asset
  2407. schemaVersion: 0.6.4
  2408. variableMeasured:
  2409. - schemaKey: PropertyValue
  2410. value: SpatialSeries
  2411. - schemaKey: PropertyValue
  2412. value: Position
  2413. - schemaKey: PropertyValue
  2414. value: ProcessingModule
  2415. - schemaKey: PropertyValue
  2416. value: CompassDirection
  2417. wasAttributedTo:
  2418. - age:
  2419. schemaKey: PropertyValue
  2420. unitText: ISO-8601 duration
  2421. value: P7DT49380S
  2422. valueReference:
  2423. schemaKey: PropertyValue
  2424. value: dandi:BirthReference
  2425. identifier: Plaid_warm_12_nachet
  2426. schemaKey: Participant
  2427. sex:
  2428. name: Unknown
  2429. schemaKey: SexType
  2430. species:
  2431. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  2432. name: Danio rerio - Zebra fish
  2433. schemaKey: SpeciesType
  2434. wasGeneratedBy:
  2435. - description: Thermal plaid experiment
  2436. name: Acquisition session
  2437. schemaKey: Session
  2438. startDate: '2023-03-07T13:43:00-05:00'
  2439. - description: Metadata generated by DANDI cli
  2440. endDate: '2023-04-20T16:56:22.250304-04:00'
  2441. id: urn:uuid:b82127e8-96a5-4bdc-9c45-46cd539bb196
  2442. name: Metadata generation
  2443. schemaKey: Activity
  2444. startDate: '2023-04-20T16:56:22.240304-04:00'
  2445. wasAssociatedWith:
  2446. - identifier: RRID:SCR_019009
  2447. name: DANDI Command Line Interface
  2448. schemaKey: Software
  2449. url: https://github.com/dandi/dandi-cli
  2450. version: 0.53.0
  2451. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2452. access:
  2453. - schemaKey: AccessRequirements
  2454. status: dandi:OpenAccess
  2455. approach:
  2456. - name: behavioral approach
  2457. schemaKey: ApproachType
  2458. blobDateModified: '2023-04-20T16:49:12.594715-04:00'
  2459. contentSize: 35337143
  2460. contentUrl:
  2461. - https://api.dandiarchive.org/api/assets/7d148ae9-ad92-4f95-9171-932749dbf861/download/
  2462. - https://dandiarchive.s3.amazonaws.com/blobs/b9c/504/b9c504a6-a411-43f9-bcd5-72a8e444e692
  2463. dateModified: '2023-04-20T16:56:24.795261-04:00'
  2464. digest:
  2465. dandi:dandi-etag: 5fd9ffe260255a730348582c6a5b339a-1
  2466. dandi:sha2-256: 9856959acabf254df2114f6e2012b1ef8d09d766efe2c79a0debaa404d4631c7
  2467. encodingFormat: application/x-nwb
  2468. id: dandiasset:7d148ae9-ad92-4f95-9171-932749dbf861
  2469. identifier: 7d148ae9-ad92-4f95-9171-932749dbf861
  2470. measurementTechnique:
  2471. - name: analytical technique
  2472. schemaKey: MeasurementTechniqueType
  2473. - name: behavioral technique
  2474. schemaKey: MeasurementTechniqueType
  2475. path: sub-Plaid-warm-16-nachet/sub-Plaid-warm-16-nachet_ses-20230308T153300_behavior.nwb
  2476. schemaKey: Asset
  2477. schemaVersion: 0.6.4
  2478. variableMeasured:
  2479. - schemaKey: PropertyValue
  2480. value: SpatialSeries
  2481. - schemaKey: PropertyValue
  2482. value: Position
  2483. - schemaKey: PropertyValue
  2484. value: ProcessingModule
  2485. - schemaKey: PropertyValue
  2486. value: CompassDirection
  2487. wasAttributedTo:
  2488. - age:
  2489. schemaKey: PropertyValue
  2490. unitText: ISO-8601 duration
  2491. value: P8DT55980S
  2492. valueReference:
  2493. schemaKey: PropertyValue
  2494. value: dandi:BirthReference
  2495. identifier: Plaid_warm_16_nachet
  2496. schemaKey: Participant
  2497. sex:
  2498. name: Unknown
  2499. schemaKey: SexType
  2500. species:
  2501. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  2502. name: Danio rerio - Zebra fish
  2503. schemaKey: SpeciesType
  2504. wasGeneratedBy:
  2505. - description: Thermal plaid experiment
  2506. name: Acquisition session
  2507. schemaKey: Session
  2508. startDate: '2023-03-08T15:33:00-05:00'
  2509. - description: Metadata generated by DANDI cli
  2510. endDate: '2023-04-20T16:56:24.795261-04:00'
  2511. id: urn:uuid:d65e210e-2d6b-4a5f-940d-e2862709e2a7
  2512. name: Metadata generation
  2513. schemaKey: Activity
  2514. startDate: '2023-04-20T16:56:24.685399-04:00'
  2515. wasAssociatedWith:
  2516. - identifier: RRID:SCR_019009
  2517. name: DANDI Command Line Interface
  2518. schemaKey: Software
  2519. url: https://github.com/dandi/dandi-cli
  2520. version: 0.53.0
  2521. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2522. access:
  2523. - schemaKey: AccessRequirements
  2524. status: dandi:OpenAccess
  2525. approach:
  2526. - name: behavioral approach
  2527. schemaKey: ApproachType
  2528. blobDateModified: '2023-04-20T16:53:27.045268-04:00'
  2529. contentSize: 35073525
  2530. contentUrl:
  2531. - https://api.dandiarchive.org/api/assets/96b67c42-fd51-4212-9d28-40a0c4026243/download/
  2532. - https://dandiarchive.s3.amazonaws.com/blobs/700/cd4/700cd4f2-2d9c-478b-abf6-8cc7ee5fb0a8
  2533. dateModified: '2023-04-20T16:56:44.314064-04:00'
  2534. digest:
  2535. dandi:dandi-etag: 7e5b33801c14a79223f52905b05cc567-1
  2536. dandi:sha2-256: 06e57957fc20f82a2592de2c7a7ed7775794ebc1e781e8854e81e6ee58b72ec6
  2537. encodingFormat: application/x-nwb
  2538. id: dandiasset:96b67c42-fd51-4212-9d28-40a0c4026243
  2539. identifier: 96b67c42-fd51-4212-9d28-40a0c4026243
  2540. measurementTechnique:
  2541. - name: analytical technique
  2542. schemaKey: MeasurementTechniqueType
  2543. - name: behavioral technique
  2544. schemaKey: MeasurementTechniqueType
  2545. path: sub-Plaid-warm-37-nachet/sub-Plaid-warm-37-nachet_ses-20230412T143600_behavior.nwb
  2546. schemaKey: Asset
  2547. schemaVersion: 0.6.4
  2548. variableMeasured:
  2549. - schemaKey: PropertyValue
  2550. value: SpatialSeries
  2551. - schemaKey: PropertyValue
  2552. value: Position
  2553. - schemaKey: PropertyValue
  2554. value: ProcessingModule
  2555. - schemaKey: PropertyValue
  2556. value: CompassDirection
  2557. wasAttributedTo:
  2558. - age:
  2559. schemaKey: PropertyValue
  2560. unitText: ISO-8601 duration
  2561. value: P6DT52560S
  2562. valueReference:
  2563. schemaKey: PropertyValue
  2564. value: dandi:BirthReference
  2565. identifier: Plaid_warm_37_nachet
  2566. schemaKey: Participant
  2567. sex:
  2568. name: Unknown
  2569. schemaKey: SexType
  2570. species:
  2571. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  2572. name: Danio rerio - Zebra fish
  2573. schemaKey: SpeciesType
  2574. wasGeneratedBy:
  2575. - description: Thermal plaid experiment
  2576. name: Acquisition session
  2577. schemaKey: Session
  2578. startDate: '2023-04-12T14:36:00-04:00'
  2579. - description: Metadata generated by DANDI cli
  2580. endDate: '2023-04-20T16:56:44.314064-04:00'
  2581. id: urn:uuid:e282bdff-7330-4a81-9425-323ca6b230b8
  2582. name: Metadata generation
  2583. schemaKey: Activity
  2584. startDate: '2023-04-20T16:56:44.306048-04:00'
  2585. wasAssociatedWith:
  2586. - identifier: RRID:SCR_019009
  2587. name: DANDI Command Line Interface
  2588. schemaKey: Software
  2589. url: https://github.com/dandi/dandi-cli
  2590. version: 0.53.0
Tip!

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

Comments

Loading...