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 88 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
  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:53:50.705790-04:00'
  9. contentSize: 35232690
  10. contentUrl:
  11. - https://api.dandiarchive.org/api/assets/03c3ed93-32f7-4f51-9d6f-4ede829ca112/download/
  12. - https://dandiarchive-embargo.s3.amazonaws.com/000486/blobs/b25/f83/b25f83ac-99e0-4bc4-94cf-09448aadaac1
  13. dateModified: '2023-04-20T17:06:04.031414-04:00'
  14. digest:
  15. dandi:dandi-etag: 2485313e2a2c7ebc436ce1e173ed9b07-1
  16. dandi:sha2-256: cb716d22de9c7c005a521d24c4b5ee768488f5d36f3c1b1c43be3c8f07152048
  17. encodingFormat: application/x-nwb
  18. id: dandiasset:03c3ed93-32f7-4f51-9d6f-4ede829ca112
  19. identifier: 03c3ed93-32f7-4f51-9d6f-4ede829ca112
  20. measurementTechnique:
  21. - name: analytical technique
  22. schemaKey: MeasurementTechniqueType
  23. - name: behavioral technique
  24. schemaKey: MeasurementTechniqueType
  25. path: sub-Replay-Plaid-warm-02-nachet/sub-Replay-Plaid-warm-02-nachet_ses-20230214T110300_behavior.nwb
  26. schemaKey: Asset
  27. schemaVersion: 0.6.4
  28. variableMeasured:
  29. - schemaKey: PropertyValue
  30. value: CompassDirection
  31. - schemaKey: PropertyValue
  32. value: Position
  33. - schemaKey: PropertyValue
  34. value: ProcessingModule
  35. - schemaKey: PropertyValue
  36. value: SpatialSeries
  37. wasAttributedTo:
  38. - age:
  39. schemaKey: PropertyValue
  40. unitText: ISO-8601 duration
  41. value: P7DT39780S
  42. valueReference:
  43. schemaKey: PropertyValue
  44. value: dandi:BirthReference
  45. identifier: Replay_Plaid_warm_02_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 replay experiment
  56. name: Acquisition session
  57. schemaKey: Session
  58. startDate: '2023-02-14T11:03:00-05:00'
  59. - description: Metadata generated by DANDI cli
  60. endDate: '2023-04-20T17:06:04.031414-04:00'
  61. id: urn:uuid:c946fc8b-38d2-4ca4-8b53-ba4301c62778
  62. name: Metadata generation
  63. schemaKey: Activity
  64. startDate: '2023-04-20T17:06:04.021415-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:54:26.943405-04:00'
  79. contentSize: 35032879
  80. contentUrl:
  81. - https://api.dandiarchive.org/api/assets/4d16a927-c66d-479f-af3b-6164defb569d/download/
  82. - https://dandiarchive-embargo.s3.amazonaws.com/000486/blobs/1e2/460/1e246071-1385-4761-b4db-e224055af351
  83. dateModified: '2023-04-20T17:06:04.598583-04:00'
  84. digest:
  85. dandi:dandi-etag: ec93f9d856ec31060ab17a79be836b85-1
  86. dandi:sha2-256: 5eaabc17b9d4f0e2cbaeecc7171420862ecd8e9d872f70c66a9303f7feb53336
  87. encodingFormat: application/x-nwb
  88. id: dandiasset:4d16a927-c66d-479f-af3b-6164defb569d
  89. identifier: 4d16a927-c66d-479f-af3b-6164defb569d
  90. measurementTechnique:
  91. - name: analytical technique
  92. schemaKey: MeasurementTechniqueType
  93. - name: behavioral technique
  94. schemaKey: MeasurementTechniqueType
  95. path: sub-Replay-Plaid-warm-05-nachet/sub-Replay-Plaid-warm-05-nachet_ses-20230228T102000_behavior.nwb
  96. schemaKey: Asset
  97. schemaVersion: 0.6.4
  98. variableMeasured:
  99. - schemaKey: PropertyValue
  100. value: CompassDirection
  101. - schemaKey: PropertyValue
  102. value: Position
  103. - schemaKey: PropertyValue
  104. value: ProcessingModule
  105. - schemaKey: PropertyValue
  106. value: SpatialSeries
  107. wasAttributedTo:
  108. - age:
  109. schemaKey: PropertyValue
  110. unitText: ISO-8601 duration
  111. value: P6DT37200S
  112. valueReference:
  113. schemaKey: PropertyValue
  114. value: dandi:BirthReference
  115. identifier: Replay_Plaid_warm_05_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 replay experiment
  126. name: Acquisition session
  127. schemaKey: Session
  128. startDate: '2023-02-28T10:20:00-05:00'
  129. - description: Metadata generated by DANDI cli
  130. endDate: '2023-04-20T17:06:04.598583-04:00'
  131. id: urn:uuid:f4b7defa-2b84-4947-b46d-5e17306b9bc3
  132. name: Metadata generation
  133. schemaKey: Activity
  134. startDate: '2023-04-20T17:06:04.588930-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:54:15.120203-04:00'
  149. contentSize: 35283378
  150. contentUrl:
  151. - https://api.dandiarchive.org/api/assets/40d98445-b3ac-4eb7-bf0c-ccdc4225d33c/download/
  152. - https://dandiarchive-embargo.s3.amazonaws.com/000486/blobs/878/d8b/878d8b8d-12e9-4f35-9e3e-c261e9ec2215
  153. dateModified: '2023-04-20T17:06:04.522370-04:00'
  154. digest:
  155. dandi:dandi-etag: 0dc23ff072dc1922cc1b52994c3eb1f4-1
  156. dandi:sha2-256: d1db7c688efccac89bf2573a444815b030850da8d0468da248f37d1bf2a661c4
  157. encodingFormat: application/x-nwb
  158. id: dandiasset:40d98445-b3ac-4eb7-bf0c-ccdc4225d33c
  159. identifier: 40d98445-b3ac-4eb7-bf0c-ccdc4225d33c
  160. measurementTechnique:
  161. - name: analytical technique
  162. schemaKey: MeasurementTechniqueType
  163. - name: behavioral technique
  164. schemaKey: MeasurementTechniqueType
  165. path: sub-Replay-Plaid-warm-04-nachet/sub-Replay-Plaid-warm-04-nachet_ses-20230214T144600_behavior.nwb
  166. schemaKey: Asset
  167. schemaVersion: 0.6.4
  168. variableMeasured:
  169. - schemaKey: PropertyValue
  170. value: CompassDirection
  171. - schemaKey: PropertyValue
  172. value: Position
  173. - schemaKey: PropertyValue
  174. value: ProcessingModule
  175. - schemaKey: PropertyValue
  176. value: SpatialSeries
  177. wasAttributedTo:
  178. - age:
  179. schemaKey: PropertyValue
  180. unitText: ISO-8601 duration
  181. value: P7DT53160S
  182. valueReference:
  183. schemaKey: PropertyValue
  184. value: dandi:BirthReference
  185. identifier: Replay_Plaid_warm_04_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 replay experiment
  196. name: Acquisition session
  197. schemaKey: Session
  198. startDate: '2023-02-14T14:46:00-05:00'
  199. - description: Metadata generated by DANDI cli
  200. endDate: '2023-04-20T17:06:04.522370-04:00'
  201. id: urn:uuid:9dadc355-e50b-4fd8-9464-b35675a119f0
  202. name: Metadata generation
  203. schemaKey: Activity
  204. startDate: '2023-04-20T17:06:04.522370-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:53:38.813951-04:00'
  219. contentSize: 35129730
  220. contentUrl:
  221. - https://api.dandiarchive.org/api/assets/ba12a35a-8cd4-4e6b-9a8a-339d79ff6988/download/
  222. - https://dandiarchive-embargo.s3.amazonaws.com/000486/blobs/679/b8e/679b8ec0-625a-4afa-aa45-8d6aa1c0ef34
  223. dateModified: '2023-04-20T17:06:04.171414-04:00'
  224. digest:
  225. dandi:dandi-etag: fa3401e58b575c2d503c3d13760f4444-1
  226. dandi:sha2-256: b929b7c79f4dbd7005632bffa7a4b1317060173242798e3d7f73a8478f249060
  227. encodingFormat: application/x-nwb
  228. id: dandiasset:ba12a35a-8cd4-4e6b-9a8a-339d79ff6988
  229. identifier: ba12a35a-8cd4-4e6b-9a8a-339d79ff6988
  230. measurementTechnique:
  231. - name: analytical technique
  232. schemaKey: MeasurementTechniqueType
  233. - name: behavioral technique
  234. schemaKey: MeasurementTechniqueType
  235. path: sub-Replay-Plaid-warm-01-nachet/sub-Replay-Plaid-warm-01-nachet_ses-20230213T141400_behavior.nwb
  236. schemaKey: Asset
  237. schemaVersion: 0.6.4
  238. variableMeasured:
  239. - schemaKey: PropertyValue
  240. value: CompassDirection
  241. - schemaKey: PropertyValue
  242. value: Position
  243. - schemaKey: PropertyValue
  244. value: ProcessingModule
  245. - schemaKey: PropertyValue
  246. value: SpatialSeries
  247. wasAttributedTo:
  248. - age:
  249. schemaKey: PropertyValue
  250. unitText: ISO-8601 duration
  251. value: P5DT51240S
  252. valueReference:
  253. schemaKey: PropertyValue
  254. value: dandi:BirthReference
  255. identifier: Replay_Plaid_warm_01_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 replay experiment
  266. name: Acquisition session
  267. schemaKey: Session
  268. startDate: '2023-02-13T14:14:00-05:00'
  269. - description: Metadata generated by DANDI cli
  270. endDate: '2023-04-20T17:06:04.171414-04:00'
  271. id: urn:uuid:c28fbbab-886a-44dc-a864-1a3f3875fe3b
  272. name: Metadata generation
  273. schemaKey: Activity
  274. startDate: '2023-04-20T17:06:04.111414-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:54:02.958100-04:00'
  289. contentSize: 35173203
  290. contentUrl:
  291. - https://api.dandiarchive.org/api/assets/ffcf72cb-2659-4649-bc6c-9ea5a9c1284b/download/
  292. - https://dandiarchive-embargo.s3.amazonaws.com/000486/blobs/8e9/850/8e9850e9-07d9-40fa-8788-4aef674a5d15
  293. dateModified: '2023-04-20T17:06:04.450399-04:00'
  294. digest:
  295. dandi:dandi-etag: 076964f41f2c9fb1940b54d9decf0641-1
  296. dandi:sha2-256: 1258386fff37cde2bb7db6c5405ded164e42b4b05132229a39ff0b6e7f18e786
  297. encodingFormat: application/x-nwb
  298. id: dandiasset:ffcf72cb-2659-4649-bc6c-9ea5a9c1284b
  299. identifier: ffcf72cb-2659-4649-bc6c-9ea5a9c1284b
  300. measurementTechnique:
  301. - name: analytical technique
  302. schemaKey: MeasurementTechniqueType
  303. - name: behavioral technique
  304. schemaKey: MeasurementTechniqueType
  305. path: sub-Replay-Plaid-warm-03-nachet/sub-Replay-Plaid-warm-03-nachet_ses-20230214T125400_behavior.nwb
  306. schemaKey: Asset
  307. schemaVersion: 0.6.4
  308. variableMeasured:
  309. - schemaKey: PropertyValue
  310. value: CompassDirection
  311. - schemaKey: PropertyValue
  312. value: Position
  313. - schemaKey: PropertyValue
  314. value: ProcessingModule
  315. - schemaKey: PropertyValue
  316. value: SpatialSeries
  317. wasAttributedTo:
  318. - age:
  319. schemaKey: PropertyValue
  320. unitText: ISO-8601 duration
  321. value: P7DT46440S
  322. valueReference:
  323. schemaKey: PropertyValue
  324. value: dandi:BirthReference
  325. identifier: Replay_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 replay experiment
  336. name: Acquisition session
  337. schemaKey: Session
  338. startDate: '2023-02-14T12:54:00-05:00'
  339. - description: Metadata generated by DANDI cli
  340. endDate: '2023-04-20T17:06:04.450399-04:00'
  341. id: urn:uuid:e7685033-cc76-478f-b160-84c898d04299
  342. name: Metadata generation
  343. schemaKey: Activity
  344. startDate: '2023-04-20T17:06:04.395994-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:54:38.908751-04:00'
  359. contentSize: 35454019
  360. contentUrl:
  361. - https://api.dandiarchive.org/api/assets/8f5ff7f9-dec5-43c1-9868-890d07f1e855/download/
  362. - https://dandiarchive-embargo.s3.amazonaws.com/000486/blobs/a82/e91/a82e91e7-aebc-487a-8235-6dbe70c96b4e
  363. dateModified: '2023-04-20T17:06:09.055505-04:00'
  364. digest:
  365. dandi:dandi-etag: ed3b5f08d080e6d15fb412f11726c853-1
  366. dandi:sha2-256: ec4ec3f98380f6cb5b6b91f646f5e394f3a8f22d0e6c61a1eb4feb169328dc54
  367. encodingFormat: application/x-nwb
  368. id: dandiasset:8f5ff7f9-dec5-43c1-9868-890d07f1e855
  369. identifier: 8f5ff7f9-dec5-43c1-9868-890d07f1e855
  370. measurementTechnique:
  371. - name: analytical technique
  372. schemaKey: MeasurementTechniqueType
  373. - name: behavioral technique
  374. schemaKey: MeasurementTechniqueType
  375. path: sub-Replay-Plaid-warm-06-nachet/sub-Replay-Plaid-warm-06-nachet_ses-20230228T120800_behavior.nwb
  376. schemaKey: Asset
  377. schemaVersion: 0.6.4
  378. variableMeasured:
  379. - schemaKey: PropertyValue
  380. value: CompassDirection
  381. - schemaKey: PropertyValue
  382. value: Position
  383. - schemaKey: PropertyValue
  384. value: ProcessingModule
  385. - schemaKey: PropertyValue
  386. value: SpatialSeries
  387. wasAttributedTo:
  388. - age:
  389. schemaKey: PropertyValue
  390. unitText: ISO-8601 duration
  391. value: P6DT43680S
  392. valueReference:
  393. schemaKey: PropertyValue
  394. value: dandi:BirthReference
  395. identifier: Replay_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 replay experiment
  406. name: Acquisition session
  407. schemaKey: Session
  408. startDate: '2023-02-28T12:08:00-05:00'
  409. - description: Metadata generated by DANDI cli
  410. endDate: '2023-04-20T17:06:09.055505-04:00'
  411. id: urn:uuid:bf876cc1-fb20-4857-8f56-436027f8de7d
  412. name: Metadata generation
  413. schemaKey: Activity
  414. startDate: '2023-04-20T17:06:09.005648-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:54:50.840635-04:00'
  429. contentSize: 35207000
  430. contentUrl:
  431. - https://api.dandiarchive.org/api/assets/c6236d85-bcb7-415e-adfb-fd28aaa7202b/download/
  432. - https://dandiarchive-embargo.s3.amazonaws.com/000486/blobs/089/f4a/089f4a7f-f925-489f-8514-9057f7d3d49f
  433. dateModified: '2023-04-20T17:06:11.350793-04:00'
  434. digest:
  435. dandi:dandi-etag: 812325974b2600047f2d3fb70141e383-1
  436. dandi:sha2-256: fbf91ea5ef8e4b05c0a7671312500c0da8a04b11c72c3bd984e1ac3e3613d7d6
  437. encodingFormat: application/x-nwb
  438. id: dandiasset:c6236d85-bcb7-415e-adfb-fd28aaa7202b
  439. identifier: c6236d85-bcb7-415e-adfb-fd28aaa7202b
  440. measurementTechnique:
  441. - name: analytical technique
  442. schemaKey: MeasurementTechniqueType
  443. - name: behavioral technique
  444. schemaKey: MeasurementTechniqueType
  445. path: sub-Replay-Plaid-warm-07-nachet/sub-Replay-Plaid-warm-07-nachet_ses-20230228T145500_behavior.nwb
  446. schemaKey: Asset
  447. schemaVersion: 0.6.4
  448. variableMeasured:
  449. - schemaKey: PropertyValue
  450. value: CompassDirection
  451. - schemaKey: PropertyValue
  452. value: Position
  453. - schemaKey: PropertyValue
  454. value: ProcessingModule
  455. - schemaKey: PropertyValue
  456. value: SpatialSeries
  457. wasAttributedTo:
  458. - age:
  459. schemaKey: PropertyValue
  460. unitText: ISO-8601 duration
  461. value: P6DT53700S
  462. valueReference:
  463. schemaKey: PropertyValue
  464. value: dandi:BirthReference
  465. identifier: Replay_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 replay experiment
  476. name: Acquisition session
  477. schemaKey: Session
  478. startDate: '2023-02-28T14:55:00-05:00'
  479. - description: Metadata generated by DANDI cli
  480. endDate: '2023-04-20T17:06:11.350793-04:00'
  481. id: urn:uuid:1fbb2fc2-4d2d-4de4-a13d-90e26217285a
  482. name: Metadata generation
  483. schemaKey: Activity
  484. startDate: '2023-04-20T17:06:11.331140-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:55:14.947170-04:00'
  499. contentSize: 34949780
  500. contentUrl:
  501. - https://api.dandiarchive.org/api/assets/2e57f168-6ae1-44a5-8148-2a8dca420cae/download/
  502. - https://dandiarchive-embargo.s3.amazonaws.com/000486/blobs/b16/b88/b16b8898-299d-488c-965a-2f202ad48233
  503. dateModified: '2023-04-20T17:06:11.541142-04:00'
  504. digest:
  505. dandi:dandi-etag: e512db213a0b7479cf87d0dde8ed1759-1
  506. dandi:sha2-256: 368d09b8a6ceb1539b5587df5f88b1cfda0397943e8a26dce93e38f8fd62e877
  507. encodingFormat: application/x-nwb
  508. id: dandiasset:2e57f168-6ae1-44a5-8148-2a8dca420cae
  509. identifier: 2e57f168-6ae1-44a5-8148-2a8dca420cae
  510. measurementTechnique:
  511. - name: analytical technique
  512. schemaKey: MeasurementTechniqueType
  513. - name: behavioral technique
  514. schemaKey: MeasurementTechniqueType
  515. path: sub-Replay-Plaid-warm-09-nachet/sub-Replay-Plaid-warm-09-nachet_ses-20230301T115600_behavior.nwb
  516. schemaKey: Asset
  517. schemaVersion: 0.6.4
  518. variableMeasured:
  519. - schemaKey: PropertyValue
  520. value: CompassDirection
  521. - schemaKey: PropertyValue
  522. value: Position
  523. - schemaKey: PropertyValue
  524. value: ProcessingModule
  525. - schemaKey: PropertyValue
  526. value: SpatialSeries
  527. wasAttributedTo:
  528. - age:
  529. schemaKey: PropertyValue
  530. unitText: ISO-8601 duration
  531. value: P7DT42960S
  532. valueReference:
  533. schemaKey: PropertyValue
  534. value: dandi:BirthReference
  535. identifier: Replay_Plaid_warm_09_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 replay experiment
  546. name: Acquisition session
  547. schemaKey: Session
  548. startDate: '2023-03-01T11:56:00-05:00'
  549. - description: Metadata generated by DANDI cli
  550. endDate: '2023-04-20T17:06:11.541142-04:00'
  551. id: urn:uuid:4208585e-7043-4d58-8f4a-7b1607173991
  552. name: Metadata generation
  553. schemaKey: Activity
  554. startDate: '2023-04-20T17:06:11.491141-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:55:02.811179-04:00'
  569. contentSize: 35110295
  570. contentUrl:
  571. - https://api.dandiarchive.org/api/assets/7c8eff71-c197-46a6-b5e3-2c161fe0702e/download/
  572. - https://dandiarchive-embargo.s3.amazonaws.com/000486/blobs/aea/c74/aeac7416-ab30-440e-bfa1-4c519e5bccbf
  573. dateModified: '2023-04-20T17:06:12.295308-04:00'
  574. digest:
  575. dandi:dandi-etag: 7c47d1c5be965ee8371d6d575b2e036a-1
  576. dandi:sha2-256: 6438b0e3c47a959df0628dac4eaee31c354d817d8eb810d0d71f9b41eef2cc0d
  577. encodingFormat: application/x-nwb
  578. id: dandiasset:7c8eff71-c197-46a6-b5e3-2c161fe0702e
  579. identifier: 7c8eff71-c197-46a6-b5e3-2c161fe0702e
  580. measurementTechnique:
  581. - name: analytical technique
  582. schemaKey: MeasurementTechniqueType
  583. - name: behavioral technique
  584. schemaKey: MeasurementTechniqueType
  585. path: sub-Replay-Plaid-warm-08-nachet/sub-Replay-Plaid-warm-08-nachet_ses-20230228T164700_behavior.nwb
  586. schemaKey: Asset
  587. schemaVersion: 0.6.4
  588. variableMeasured:
  589. - schemaKey: PropertyValue
  590. value: CompassDirection
  591. - schemaKey: PropertyValue
  592. value: Position
  593. - schemaKey: PropertyValue
  594. value: ProcessingModule
  595. - schemaKey: PropertyValue
  596. value: SpatialSeries
  597. wasAttributedTo:
  598. - age:
  599. schemaKey: PropertyValue
  600. unitText: ISO-8601 duration
  601. value: P6DT60420S
  602. valueReference:
  603. schemaKey: PropertyValue
  604. value: dandi:BirthReference
  605. identifier: Replay_Plaid_warm_08_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 replay experiment
  616. name: Acquisition session
  617. schemaKey: Session
  618. startDate: '2023-02-28T16:47:00-05:00'
  619. - description: Metadata generated by DANDI cli
  620. endDate: '2023-04-20T17:06:12.295308-04:00'
  621. id: urn:uuid:212a0522-e76c-440a-a811-e22723982bba
  622. name: Metadata generation
  623. schemaKey: Activity
  624. startDate: '2023-04-20T17:06:12.295308-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:55:56.363162-04:00'
  639. contentSize: 35144025
  640. contentUrl:
  641. - https://api.dandiarchive.org/api/assets/5259da55-e2f5-4d96-83ac-119c9ce0cb46/download/
  642. - https://dandiarchive-embargo.s3.amazonaws.com/000486/blobs/8ee/385/8ee3851f-9f29-4b60-b747-60580e3d877b
  643. dateModified: '2023-04-20T17:06:13.881784-04:00'
  644. digest:
  645. dandi:dandi-etag: 976ae3b937ed5c1b76b0c14b2eee4a18-1
  646. dandi:sha2-256: cfe8b62e83bb371bf3dbd0b7f2f8f2af34febf21c7d3a31e9e5693bfb4a51a3a
  647. encodingFormat: application/x-nwb
  648. id: dandiasset:5259da55-e2f5-4d96-83ac-119c9ce0cb46
  649. identifier: 5259da55-e2f5-4d96-83ac-119c9ce0cb46
  650. measurementTechnique:
  651. - name: analytical technique
  652. schemaKey: MeasurementTechniqueType
  653. - name: behavioral technique
  654. schemaKey: MeasurementTechniqueType
  655. path: sub-Replay-Plaid-warm-12-nachet/sub-Replay-Plaid-warm-12-nachet_ses-20230307T152300_behavior.nwb
  656. schemaKey: Asset
  657. schemaVersion: 0.6.4
  658. variableMeasured:
  659. - schemaKey: PropertyValue
  660. value: CompassDirection
  661. - schemaKey: PropertyValue
  662. value: Position
  663. - schemaKey: PropertyValue
  664. value: ProcessingModule
  665. - schemaKey: PropertyValue
  666. value: SpatialSeries
  667. wasAttributedTo:
  668. - age:
  669. schemaKey: PropertyValue
  670. unitText: ISO-8601 duration
  671. value: P7DT55380S
  672. valueReference:
  673. schemaKey: PropertyValue
  674. value: dandi:BirthReference
  675. identifier: Replay_Plaid_warm_12_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 replay experiment
  686. name: Acquisition session
  687. schemaKey: Session
  688. startDate: '2023-03-07T15:23:00-05:00'
  689. - description: Metadata generated by DANDI cli
  690. endDate: '2023-04-20T17:06:13.881784-04:00'
  691. id: urn:uuid:80ba34ac-9099-4482-9a4c-d02a34400fe6
  692. name: Metadata generation
  693. schemaKey: Activity
  694. startDate: '2023-04-20T17:06:13.711541-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:55:44.046872-04:00'
  709. contentSize: 34823854
  710. contentUrl:
  711. - https://api.dandiarchive.org/api/assets/011cba00-27c1-4778-b3a1-cee5edaf595d/download/
  712. - https://dandiarchive-embargo.s3.amazonaws.com/000486/blobs/f07/072/f0707277-0fdf-4bc9-9967-498bc9bb6ff4
  713. dateModified: '2023-04-20T17:06:14.251791-04:00'
  714. digest:
  715. dandi:dandi-etag: f9111ed70d886f2d62b5ab534a8e572f-1
  716. dandi:sha2-256: 42a7d32615a6c0a2a357007e98cadf464c79a3aac9ab791a0fe7295cb17180e9
  717. encodingFormat: application/x-nwb
  718. id: dandiasset:011cba00-27c1-4778-b3a1-cee5edaf595d
  719. identifier: 011cba00-27c1-4778-b3a1-cee5edaf595d
  720. measurementTechnique:
  721. - name: analytical technique
  722. schemaKey: MeasurementTechniqueType
  723. - name: behavioral technique
  724. schemaKey: MeasurementTechniqueType
  725. path: sub-Replay-Plaid-warm-11-nachet/sub-Replay-Plaid-warm-11-nachet_ses-20230307T123600_behavior.nwb
  726. schemaKey: Asset
  727. schemaVersion: 0.6.4
  728. variableMeasured:
  729. - schemaKey: PropertyValue
  730. value: CompassDirection
  731. - schemaKey: PropertyValue
  732. value: Position
  733. - schemaKey: PropertyValue
  734. value: ProcessingModule
  735. - schemaKey: PropertyValue
  736. value: SpatialSeries
  737. wasAttributedTo:
  738. - age:
  739. schemaKey: PropertyValue
  740. unitText: ISO-8601 duration
  741. value: P7DT45360S
  742. valueReference:
  743. schemaKey: PropertyValue
  744. value: dandi:BirthReference
  745. identifier: Replay_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 replay experiment
  756. name: Acquisition session
  757. schemaKey: Session
  758. startDate: '2023-03-07T12:36:00-05:00'
  759. - description: Metadata generated by DANDI cli
  760. endDate: '2023-04-20T17:06:14.251791-04:00'
  761. id: urn:uuid:b3d98b7d-e00b-4cf4-9e31-10aaec5ee087
  762. name: Metadata generation
  763. schemaKey: Activity
  764. startDate: '2023-04-20T17:06:14.111786-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:56:08.292546-04:00'
  779. contentSize: 34882041
  780. contentUrl:
  781. - https://api.dandiarchive.org/api/assets/913d6f8e-e2a7-4f8c-9eb6-b8a0df5c22ef/download/
  782. - https://dandiarchive-embargo.s3.amazonaws.com/000486/blobs/b2f/069/b2f06942-c4c7-4c53-bc19-1f489c8a1dd9
  783. dateModified: '2023-04-20T17:06:17.007047-04:00'
  784. digest:
  785. dandi:dandi-etag: 753366a122ffe9fb038376726acb0eba-1
  786. dandi:sha2-256: 711655181e7b16a875bd64d784fd5c7a4625e233b87d4daa800d8d22557da4e6
  787. encodingFormat: application/x-nwb
  788. id: dandiasset:913d6f8e-e2a7-4f8c-9eb6-b8a0df5c22ef
  789. identifier: 913d6f8e-e2a7-4f8c-9eb6-b8a0df5c22ef
  790. measurementTechnique:
  791. - name: analytical technique
  792. schemaKey: MeasurementTechniqueType
  793. - name: behavioral technique
  794. schemaKey: MeasurementTechniqueType
  795. path: sub-Replay-Plaid-warm-13-nachet/sub-Replay-Plaid-warm-13-nachet_ses-20230307T171300_behavior.nwb
  796. schemaKey: Asset
  797. schemaVersion: 0.6.4
  798. variableMeasured:
  799. - schemaKey: PropertyValue
  800. value: CompassDirection
  801. - schemaKey: PropertyValue
  802. value: Position
  803. - schemaKey: PropertyValue
  804. value: ProcessingModule
  805. - schemaKey: PropertyValue
  806. value: SpatialSeries
  807. wasAttributedTo:
  808. - age:
  809. schemaKey: PropertyValue
  810. unitText: ISO-8601 duration
  811. value: P7DT61980S
  812. valueReference:
  813. schemaKey: PropertyValue
  814. value: dandi:BirthReference
  815. identifier: Replay_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 replay experiment
  826. name: Acquisition session
  827. schemaKey: Session
  828. startDate: '2023-03-07T17:13:00-05:00'
  829. - description: Metadata generated by DANDI cli
  830. endDate: '2023-04-20T17:06:17.007047-04:00'
  831. id: urn:uuid:bdc9b9ec-cc5e-4a07-801f-87fa23d37677
  832. name: Metadata generation
  833. schemaKey: Activity
  834. startDate: '2023-04-20T17:06:16.997020-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:56:21.187374-04:00'
  849. contentSize: 35253381
  850. contentUrl:
  851. - https://api.dandiarchive.org/api/assets/30cb4d16-879d-4c51-ac03-4484f7f2cb0b/download/
  852. - https://dandiarchive-embargo.s3.amazonaws.com/000486/blobs/75c/9bf/75c9bf0e-cf24-4052-a9dc-d114336c2a6d
  853. dateModified: '2023-04-20T17:06:17.702703-04:00'
  854. digest:
  855. dandi:dandi-etag: ab530306bdc5e61c314fb38aa57dc3b1-1
  856. dandi:sha2-256: 9a8f38b09985c8ccf5bfbbf55d01191f35ac3175fce5cb811e0d59b64b81e081
  857. encodingFormat: application/x-nwb
  858. id: dandiasset:30cb4d16-879d-4c51-ac03-4484f7f2cb0b
  859. identifier: 30cb4d16-879d-4c51-ac03-4484f7f2cb0b
  860. measurementTechnique:
  861. - name: analytical technique
  862. schemaKey: MeasurementTechniqueType
  863. - name: behavioral technique
  864. schemaKey: MeasurementTechniqueType
  865. path: sub-Replay-Plaid-warm-14-nachet/sub-Replay-Plaid-warm-14-nachet_ses-20230308T113300_behavior.nwb
  866. schemaKey: Asset
  867. schemaVersion: 0.6.4
  868. variableMeasured:
  869. - schemaKey: PropertyValue
  870. value: CompassDirection
  871. - schemaKey: PropertyValue
  872. value: Position
  873. - schemaKey: PropertyValue
  874. value: ProcessingModule
  875. - schemaKey: PropertyValue
  876. value: SpatialSeries
  877. wasAttributedTo:
  878. - age:
  879. schemaKey: PropertyValue
  880. unitText: ISO-8601 duration
  881. value: P8DT41580S
  882. valueReference:
  883. schemaKey: PropertyValue
  884. value: dandi:BirthReference
  885. identifier: Replay_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 replay experiment
  896. name: Acquisition session
  897. schemaKey: Session
  898. startDate: '2023-03-08T11:33:00-05:00'
  899. - description: Metadata generated by DANDI cli
  900. endDate: '2023-04-20T17:06:17.702703-04:00'
  901. id: urn:uuid:59d355fe-ef13-4fed-a4b6-80850479b446
  902. name: Metadata generation
  903. schemaKey: Activity
  904. startDate: '2023-04-20T17:06:17.652355-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:56:33.961172-04:00'
  919. contentSize: 35159996
  920. contentUrl:
  921. - https://api.dandiarchive.org/api/assets/e2c8d8e9-3a98-47c7-bdb5-7dac8832c9e0/download/
  922. - https://dandiarchive-embargo.s3.amazonaws.com/000486/blobs/e67/856/e67856b7-1f5c-43f3-aecf-212a8fd00041
  923. dateModified: '2023-04-20T17:06:18.082561-04:00'
  924. digest:
  925. dandi:dandi-etag: 6df6cd65078e725e41ae2b1cbbc17017-1
  926. dandi:sha2-256: b7e377f49df6c8a7c2eaa601c3ac00f7cc1bb09c430874c3bf7e96282aaf1c1a
  927. encodingFormat: application/x-nwb
  928. id: dandiasset:e2c8d8e9-3a98-47c7-bdb5-7dac8832c9e0
  929. identifier: e2c8d8e9-3a98-47c7-bdb5-7dac8832c9e0
  930. measurementTechnique:
  931. - name: analytical technique
  932. schemaKey: MeasurementTechniqueType
  933. - name: behavioral technique
  934. schemaKey: MeasurementTechniqueType
  935. path: sub-Replay-Plaid-warm-15-nachet/sub-Replay-Plaid-warm-15-nachet_ses-20230308T143100_behavior.nwb
  936. schemaKey: Asset
  937. schemaVersion: 0.6.4
  938. variableMeasured:
  939. - schemaKey: PropertyValue
  940. value: CompassDirection
  941. - schemaKey: PropertyValue
  942. value: Position
  943. - schemaKey: PropertyValue
  944. value: ProcessingModule
  945. - schemaKey: PropertyValue
  946. value: SpatialSeries
  947. wasAttributedTo:
  948. - age:
  949. schemaKey: PropertyValue
  950. unitText: ISO-8601 duration
  951. value: P8DT52260S
  952. valueReference:
  953. schemaKey: PropertyValue
  954. value: dandi:BirthReference
  955. identifier: Replay_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 replay experiment
  966. name: Acquisition session
  967. schemaKey: Session
  968. startDate: '2023-03-08T14:31:00-05:00'
  969. - description: Metadata generated by DANDI cli
  970. endDate: '2023-04-20T17:06:18.082561-04:00'
  971. id: urn:uuid:8e8e565b-d5af-4443-9fec-bd447cf20888
  972. name: Metadata generation
  973. schemaKey: Activity
  974. startDate: '2023-04-20T17:06:18.072912-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:56:46.519818-04:00'
  989. contentSize: 34701021
  990. contentUrl:
  991. - https://api.dandiarchive.org/api/assets/021cfe55-a3bf-40d4-b285-7d80d1c5a7e2/download/
  992. - https://dandiarchive-embargo.s3.amazonaws.com/000486/blobs/b8d/5eb/b8d5eb6e-5861-4683-8626-d1f25459858a
  993. dateModified: '2023-04-20T17:06:19.713699-04:00'
  994. digest:
  995. dandi:dandi-etag: d88b44ac0af91fd8e9a2401d83af3d76-1
  996. dandi:sha2-256: d728a822e9c761d790df4b6795ddb87c8277fad8db7e427ba748c0a243d86da5
  997. encodingFormat: application/x-nwb
  998. id: dandiasset:021cfe55-a3bf-40d4-b285-7d80d1c5a7e2
  999. identifier: 021cfe55-a3bf-40d4-b285-7d80d1c5a7e2
  1000. measurementTechnique:
  1001. - name: analytical technique
  1002. schemaKey: MeasurementTechniqueType
  1003. - name: behavioral technique
  1004. schemaKey: MeasurementTechniqueType
  1005. path: sub-Replay-Plaid-warm-16-nachet/sub-Replay-Plaid-warm-16-nachet_ses-20230308T163200_behavior.nwb
  1006. schemaKey: Asset
  1007. schemaVersion: 0.6.4
  1008. variableMeasured:
  1009. - schemaKey: PropertyValue
  1010. value: CompassDirection
  1011. - schemaKey: PropertyValue
  1012. value: Position
  1013. - schemaKey: PropertyValue
  1014. value: ProcessingModule
  1015. - schemaKey: PropertyValue
  1016. value: SpatialSeries
  1017. wasAttributedTo:
  1018. - age:
  1019. schemaKey: PropertyValue
  1020. unitText: ISO-8601 duration
  1021. value: P8DT59520S
  1022. valueReference:
  1023. schemaKey: PropertyValue
  1024. value: dandi:BirthReference
  1025. identifier: Replay_Plaid_warm_16_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 replay experiment
  1036. name: Acquisition session
  1037. schemaKey: Session
  1038. startDate: '2023-03-08T16:32:00-05:00'
  1039. - description: Metadata generated by DANDI cli
  1040. endDate: '2023-04-20T17:06:19.713699-04:00'
  1041. id: urn:uuid:d6aca511-4d3f-45be-8231-59292a4f2ffc
  1042. name: Metadata generation
  1043. schemaKey: Activity
  1044. startDate: '2023-04-20T17:06:19.553700-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:56:58.689509-04:00'
  1059. contentSize: 35390451
  1060. contentUrl:
  1061. - https://api.dandiarchive.org/api/assets/cf5d9364-8982-464d-bd60-a150b850d16b/download/
  1062. - https://dandiarchive-embargo.s3.amazonaws.com/000486/blobs/bbe/b80/bbeb80ba-06ee-4c8a-8481-10a3fae4b1d0
  1063. dateModified: '2023-04-20T17:06:19.643696-04:00'
  1064. digest:
  1065. dandi:dandi-etag: cb14129f53f6c1a21fe1969a3e1fedd5-1
  1066. dandi:sha2-256: 493fb7302d2ba8f624d43292c30a13c4e807f8fb26b6d74920ba74fe581bb588
  1067. encodingFormat: application/x-nwb
  1068. id: dandiasset:cf5d9364-8982-464d-bd60-a150b850d16b
  1069. identifier: cf5d9364-8982-464d-bd60-a150b850d16b
  1070. measurementTechnique:
  1071. - name: analytical technique
  1072. schemaKey: MeasurementTechniqueType
  1073. - name: behavioral technique
  1074. schemaKey: MeasurementTechniqueType
  1075. path: sub-Replay-Plaid-warm-17-nachet/sub-Replay-Plaid-warm-17-nachet_ses-20230314T104200_behavior.nwb
  1076. schemaKey: Asset
  1077. schemaVersion: 0.6.4
  1078. variableMeasured:
  1079. - schemaKey: PropertyValue
  1080. value: CompassDirection
  1081. - schemaKey: PropertyValue
  1082. value: Position
  1083. - schemaKey: PropertyValue
  1084. value: ProcessingModule
  1085. - schemaKey: PropertyValue
  1086. value: SpatialSeries
  1087. wasAttributedTo:
  1088. - age:
  1089. schemaKey: PropertyValue
  1090. unitText: ISO-8601 duration
  1091. value: P5DT34920S
  1092. valueReference:
  1093. schemaKey: PropertyValue
  1094. value: dandi:BirthReference
  1095. identifier: Replay_Plaid_warm_17_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 replay experiment
  1106. name: Acquisition session
  1107. schemaKey: Session
  1108. startDate: '2023-03-14T10:42:00-04:00'
  1109. - description: Metadata generated by DANDI cli
  1110. endDate: '2023-04-20T17:06:19.643696-04:00'
  1111. id: urn:uuid:3463efe5-b168-4069-87cf-ea367d969f02
  1112. name: Metadata generation
  1113. schemaKey: Activity
  1114. startDate: '2023-04-20T17:06:19.503350-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:57:11.592217-04:00'
  1129. contentSize: 35130031
  1130. contentUrl:
  1131. - https://api.dandiarchive.org/api/assets/441b9e8c-ee4a-4270-bb6a-43f87ddf9b32/download/
  1132. - https://dandiarchive-embargo.s3.amazonaws.com/000486/blobs/f35/a9f/f35a9f11-b995-4c58-b58d-187f70fd0a54
  1133. dateModified: '2023-04-20T17:06:21.238638-04:00'
  1134. digest:
  1135. dandi:dandi-etag: fad344f00488a8a712ebdcba12480187-1
  1136. dandi:sha2-256: a1e65e2e6c7e074c2d617986a888c24fe2e621c574f42064f4adaaa501409f9e
  1137. encodingFormat: application/x-nwb
  1138. id: dandiasset:441b9e8c-ee4a-4270-bb6a-43f87ddf9b32
  1139. identifier: 441b9e8c-ee4a-4270-bb6a-43f87ddf9b32
  1140. measurementTechnique:
  1141. - name: analytical technique
  1142. schemaKey: MeasurementTechniqueType
  1143. - name: behavioral technique
  1144. schemaKey: MeasurementTechniqueType
  1145. path: sub-Replay-Plaid-warm-18-nachet/sub-Replay-Plaid-warm-18-nachet_ses-20230314T141400_behavior.nwb
  1146. schemaKey: Asset
  1147. schemaVersion: 0.6.4
  1148. variableMeasured:
  1149. - schemaKey: PropertyValue
  1150. value: CompassDirection
  1151. - schemaKey: PropertyValue
  1152. value: Position
  1153. - schemaKey: PropertyValue
  1154. value: ProcessingModule
  1155. - schemaKey: PropertyValue
  1156. value: SpatialSeries
  1157. wasAttributedTo:
  1158. - age:
  1159. schemaKey: PropertyValue
  1160. unitText: ISO-8601 duration
  1161. value: P5DT47640S
  1162. valueReference:
  1163. schemaKey: PropertyValue
  1164. value: dandi:BirthReference
  1165. identifier: Replay_Plaid_warm_18_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 replay experiment
  1176. name: Acquisition session
  1177. schemaKey: Session
  1178. startDate: '2023-03-14T14:14:00-04:00'
  1179. - description: Metadata generated by DANDI cli
  1180. endDate: '2023-04-20T17:06:21.238638-04:00'
  1181. id: urn:uuid:27ed54ce-ebd7-48cf-98ad-cb8bb90e0816
  1182. name: Metadata generation
  1183. schemaKey: Activity
  1184. startDate: '2023-04-20T17:06:21.238638-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:57:24.373458-04:00'
  1199. contentSize: 35314646
  1200. contentUrl:
  1201. - https://api.dandiarchive.org/api/assets/37d42e37-5512-4c20-a107-6ad4395a66ff/download/
  1202. - https://dandiarchive-embargo.s3.amazonaws.com/000486/blobs/c93/ae5/c93ae546-f5c7-4156-a476-ee6ad97d0146
  1203. dateModified: '2023-04-20T17:06:22.909138-04:00'
  1204. digest:
  1205. dandi:dandi-etag: b5526ed9644ea6377587d51086403818-1
  1206. dandi:sha2-256: 532c5e19eaccfa975fa8258fd157be67b75646cf4df123e4890d8f60f9a50ff8
  1207. encodingFormat: application/x-nwb
  1208. id: dandiasset:37d42e37-5512-4c20-a107-6ad4395a66ff
  1209. identifier: 37d42e37-5512-4c20-a107-6ad4395a66ff
  1210. measurementTechnique:
  1211. - name: analytical technique
  1212. schemaKey: MeasurementTechniqueType
  1213. - name: behavioral technique
  1214. schemaKey: MeasurementTechniqueType
  1215. path: sub-Replay-Plaid-warm-19-nachet/sub-Replay-Plaid-warm-19-nachet_ses-20230314T165500_behavior.nwb
  1216. schemaKey: Asset
  1217. schemaVersion: 0.6.4
  1218. variableMeasured:
  1219. - schemaKey: PropertyValue
  1220. value: CompassDirection
  1221. - schemaKey: PropertyValue
  1222. value: Position
  1223. - schemaKey: PropertyValue
  1224. value: ProcessingModule
  1225. - schemaKey: PropertyValue
  1226. value: SpatialSeries
  1227. wasAttributedTo:
  1228. - age:
  1229. schemaKey: PropertyValue
  1230. unitText: ISO-8601 duration
  1231. value: P5DT57300S
  1232. valueReference:
  1233. schemaKey: PropertyValue
  1234. value: dandi:BirthReference
  1235. identifier: Replay_Plaid_warm_19_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 replay experiment
  1246. name: Acquisition session
  1247. schemaKey: Session
  1248. startDate: '2023-03-14T16:55:00-04:00'
  1249. - description: Metadata generated by DANDI cli
  1250. endDate: '2023-04-20T17:06:22.909138-04:00'
  1251. id: urn:uuid:a14f9ec5-0541-465b-ab27-04a1cc04208e
  1252. name: Metadata generation
  1253. schemaKey: Activity
  1254. startDate: '2023-04-20T17:06:22.858895-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:57:36.624683-04:00'
  1269. contentSize: 35544448
  1270. contentUrl:
  1271. - https://api.dandiarchive.org/api/assets/2384df3d-d910-4986-96d5-25095f83bf1c/download/
  1272. - https://dandiarchive-embargo.s3.amazonaws.com/000486/blobs/9e0/24a/9e024ad5-b096-41cf-8c48-cf6b75bdb008
  1273. dateModified: '2023-04-20T17:06:23.291321-04:00'
  1274. digest:
  1275. dandi:dandi-etag: 8d419e41938eb3984bbdb172cff6d205-1
  1276. dandi:sha2-256: abd0530f7cd2e914b015216b6824d3cd96c6ae89801b338b132c209b548f41af
  1277. encodingFormat: application/x-nwb
  1278. id: dandiasset:2384df3d-d910-4986-96d5-25095f83bf1c
  1279. identifier: 2384df3d-d910-4986-96d5-25095f83bf1c
  1280. measurementTechnique:
  1281. - name: analytical technique
  1282. schemaKey: MeasurementTechniqueType
  1283. - name: behavioral technique
  1284. schemaKey: MeasurementTechniqueType
  1285. path: sub-Replay-Plaid-warm-20-nachet/sub-Replay-Plaid-warm-20-nachet_ses-20230315T124100_behavior.nwb
  1286. schemaKey: Asset
  1287. schemaVersion: 0.6.4
  1288. variableMeasured:
  1289. - schemaKey: PropertyValue
  1290. value: CompassDirection
  1291. - schemaKey: PropertyValue
  1292. value: Position
  1293. - schemaKey: PropertyValue
  1294. value: ProcessingModule
  1295. - schemaKey: PropertyValue
  1296. value: SpatialSeries
  1297. wasAttributedTo:
  1298. - age:
  1299. schemaKey: PropertyValue
  1300. unitText: ISO-8601 duration
  1301. value: P6DT42060S
  1302. valueReference:
  1303. schemaKey: PropertyValue
  1304. value: dandi:BirthReference
  1305. identifier: Replay_Plaid_warm_20_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 replay experiment
  1316. name: Acquisition session
  1317. schemaKey: Session
  1318. startDate: '2023-03-15T12:41:00-04:00'
  1319. - description: Metadata generated by DANDI cli
  1320. endDate: '2023-04-20T17:06:23.291321-04:00'
  1321. id: urn:uuid:aaf8fa85-a168-4da0-9e9f-0a0923839c58
  1322. name: Metadata generation
  1323. schemaKey: Activity
  1324. startDate: '2023-04-20T17:06:23.281669-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:58:13.783563-04:00'
  1339. contentSize: 35699261
  1340. contentUrl:
  1341. - https://api.dandiarchive.org/api/assets/4c7fbc5b-97c5-41f9-8b16-51b73f3da176/download/
  1342. - https://dandiarchive-embargo.s3.amazonaws.com/000486/blobs/d7b/9ed/d7b9edf4-3223-41d3-85a2-d4ed316af1bd
  1343. dateModified: '2023-04-20T17:06:26.521359-04:00'
  1344. digest:
  1345. dandi:dandi-etag: fa11f898e9ee89dd6c550caccceb5962-1
  1346. dandi:sha2-256: 6fa5d72f8128a405775afe94e003b8dbc15d7b585570c4d5f27b6ec8d8c4f9a5
  1347. encodingFormat: application/x-nwb
  1348. id: dandiasset:4c7fbc5b-97c5-41f9-8b16-51b73f3da176
  1349. identifier: 4c7fbc5b-97c5-41f9-8b16-51b73f3da176
  1350. measurementTechnique:
  1351. - name: analytical technique
  1352. schemaKey: MeasurementTechniqueType
  1353. - name: behavioral technique
  1354. schemaKey: MeasurementTechniqueType
  1355. path: sub-Replay-Plaid-warm-23-nachet/sub-Replay-Plaid-warm-23-nachet_ses-20230327T131300_behavior.nwb
  1356. schemaKey: Asset
  1357. schemaVersion: 0.6.4
  1358. variableMeasured:
  1359. - schemaKey: PropertyValue
  1360. value: CompassDirection
  1361. - schemaKey: PropertyValue
  1362. value: Position
  1363. - schemaKey: PropertyValue
  1364. value: ProcessingModule
  1365. - schemaKey: PropertyValue
  1366. value: SpatialSeries
  1367. wasAttributedTo:
  1368. - age:
  1369. schemaKey: PropertyValue
  1370. unitText: ISO-8601 duration
  1371. value: P6DT47580S
  1372. valueReference:
  1373. schemaKey: PropertyValue
  1374. value: dandi:BirthReference
  1375. identifier: Replay_Plaid_warm_23_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 replay experiment
  1386. name: Acquisition session
  1387. schemaKey: Session
  1388. startDate: '2023-03-27T13:13:00-04:00'
  1389. - description: Metadata generated by DANDI cli
  1390. endDate: '2023-04-20T17:06:26.521359-04:00'
  1391. id: urn:uuid:5df5ee93-790e-437a-bc4e-e26ab8315ea1
  1392. name: Metadata generation
  1393. schemaKey: Activity
  1394. startDate: '2023-04-20T17:06:26.501359-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:58:01.290639-04:00'
  1409. contentSize: 35449794
  1410. contentUrl:
  1411. - https://api.dandiarchive.org/api/assets/12d17097-595d-44ad-8607-0cf693504a1d/download/
  1412. - https://dandiarchive-embargo.s3.amazonaws.com/000486/blobs/b1f/73e/b1f73e95-fbae-4420-9beb-e505a6791946
  1413. dateModified: '2023-04-20T17:06:26.961448-04:00'
  1414. digest:
  1415. dandi:dandi-etag: de8e88618edd4969b428f41ed72d354a-1
  1416. dandi:sha2-256: d50efbf952eceefe9dfb71983569ef3574ef9a738b0452c86275899878f2983b
  1417. encodingFormat: application/x-nwb
  1418. id: dandiasset:12d17097-595d-44ad-8607-0cf693504a1d
  1419. identifier: 12d17097-595d-44ad-8607-0cf693504a1d
  1420. measurementTechnique:
  1421. - name: analytical technique
  1422. schemaKey: MeasurementTechniqueType
  1423. - name: behavioral technique
  1424. schemaKey: MeasurementTechniqueType
  1425. path: sub-Replay-Plaid-warm-22-nachet/sub-Replay-Plaid-warm-22-nachet_ses-20230315T170400_behavior.nwb
  1426. schemaKey: Asset
  1427. schemaVersion: 0.6.4
  1428. variableMeasured:
  1429. - schemaKey: PropertyValue
  1430. value: CompassDirection
  1431. - schemaKey: PropertyValue
  1432. value: Position
  1433. - schemaKey: PropertyValue
  1434. value: ProcessingModule
  1435. - schemaKey: PropertyValue
  1436. value: SpatialSeries
  1437. wasAttributedTo:
  1438. - age:
  1439. schemaKey: PropertyValue
  1440. unitText: ISO-8601 duration
  1441. value: P6DT57840S
  1442. valueReference:
  1443. schemaKey: PropertyValue
  1444. value: dandi:BirthReference
  1445. identifier: Replay_Plaid_warm_22_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 replay experiment
  1456. name: Acquisition session
  1457. schemaKey: Session
  1458. startDate: '2023-03-15T17:04:00-04:00'
  1459. - description: Metadata generated by DANDI cli
  1460. endDate: '2023-04-20T17:06:26.961448-04:00'
  1461. id: urn:uuid:aead7cf8-c03a-4a66-92ce-66f94df06810
  1462. name: Metadata generation
  1463. schemaKey: Activity
  1464. startDate: '2023-04-20T17:06:26.951793-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:57:49.019802-04:00'
  1479. contentSize: 35238391
  1480. contentUrl:
  1481. - https://api.dandiarchive.org/api/assets/1d827a83-d7d3-4fc5-ac0a-ad663a2d9ab5/download/
  1482. - https://dandiarchive-embargo.s3.amazonaws.com/000486/blobs/794/59e/79459e1b-9090-4c12-875a-8a562f7e5af5
  1483. dateModified: '2023-04-20T17:06:26.731793-04:00'
  1484. digest:
  1485. dandi:dandi-etag: 9b7de5e1bbca2d1690dc3858760dbb0a-1
  1486. dandi:sha2-256: 1881a677301b20fa892371704dbe82ac29243ecb1d75d7f7ed3724ef4b203829
  1487. encodingFormat: application/x-nwb
  1488. id: dandiasset:1d827a83-d7d3-4fc5-ac0a-ad663a2d9ab5
  1489. identifier: 1d827a83-d7d3-4fc5-ac0a-ad663a2d9ab5
  1490. measurementTechnique:
  1491. - name: analytical technique
  1492. schemaKey: MeasurementTechniqueType
  1493. - name: behavioral technique
  1494. schemaKey: MeasurementTechniqueType
  1495. path: sub-Replay-Plaid-warm-21-nachet/sub-Replay-Plaid-warm-21-nachet_ses-20230315T143100_behavior.nwb
  1496. schemaKey: Asset
  1497. schemaVersion: 0.6.4
  1498. variableMeasured:
  1499. - schemaKey: PropertyValue
  1500. value: CompassDirection
  1501. - schemaKey: PropertyValue
  1502. value: Position
  1503. - schemaKey: PropertyValue
  1504. value: ProcessingModule
  1505. - schemaKey: PropertyValue
  1506. value: SpatialSeries
  1507. wasAttributedTo:
  1508. - age:
  1509. schemaKey: PropertyValue
  1510. unitText: ISO-8601 duration
  1511. value: P6DT48660S
  1512. valueReference:
  1513. schemaKey: PropertyValue
  1514. value: dandi:BirthReference
  1515. identifier: Replay_Plaid_warm_21_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 replay experiment
  1526. name: Acquisition session
  1527. schemaKey: Session
  1528. startDate: '2023-03-15T14:31:00-04:00'
  1529. - description: Metadata generated by DANDI cli
  1530. endDate: '2023-04-20T17:06:26.731793-04:00'
  1531. id: urn:uuid:1747e8e9-febc-4b64-9467-01246d80a0a8
  1532. name: Metadata generation
  1533. schemaKey: Activity
  1534. startDate: '2023-04-20T17:06:26.731793-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:58:26.411480-04:00'
  1549. contentSize: 35150499
  1550. contentUrl:
  1551. - https://api.dandiarchive.org/api/assets/f3d84437-48d1-4f27-a9c0-9830c12d9cac/download/
  1552. - https://dandiarchive-embargo.s3.amazonaws.com/000486/blobs/a3e/6e4/a3e6e4d5-0a85-49d0-a888-0d3ed8ca9c39
  1553. dateModified: '2023-04-20T17:06:27.979365-04:00'
  1554. digest:
  1555. dandi:dandi-etag: 6e2004d635d7e46b8d00e2c62077bf86-1
  1556. dandi:sha2-256: 0743be8fd14d475b3c6ad5bc1da7cd2784374d68c9ab50c86393e779aff5c608
  1557. encodingFormat: application/x-nwb
  1558. id: dandiasset:f3d84437-48d1-4f27-a9c0-9830c12d9cac
  1559. identifier: f3d84437-48d1-4f27-a9c0-9830c12d9cac
  1560. measurementTechnique:
  1561. - name: analytical technique
  1562. schemaKey: MeasurementTechniqueType
  1563. - name: behavioral technique
  1564. schemaKey: MeasurementTechniqueType
  1565. path: sub-Replay-Plaid-warm-24-nachet/sub-Replay-Plaid-warm-24-nachet_ses-20230327T150500_behavior.nwb
  1566. schemaKey: Asset
  1567. schemaVersion: 0.6.4
  1568. variableMeasured:
  1569. - schemaKey: PropertyValue
  1570. value: CompassDirection
  1571. - schemaKey: PropertyValue
  1572. value: Position
  1573. - schemaKey: PropertyValue
  1574. value: ProcessingModule
  1575. - schemaKey: PropertyValue
  1576. value: SpatialSeries
  1577. wasAttributedTo:
  1578. - age:
  1579. schemaKey: PropertyValue
  1580. unitText: ISO-8601 duration
  1581. value: P6DT54300S
  1582. valueReference:
  1583. schemaKey: PropertyValue
  1584. value: dandi:BirthReference
  1585. identifier: Replay_Plaid_warm_24_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 replay experiment
  1596. name: Acquisition session
  1597. schemaKey: Session
  1598. startDate: '2023-03-27T15:05:00-04:00'
  1599. - description: Metadata generated by DANDI cli
  1600. endDate: '2023-04-20T17:06:27.979365-04:00'
  1601. id: urn:uuid:5457848a-fa50-40b8-9b7a-1f0e4f85520b
  1602. name: Metadata generation
  1603. schemaKey: Activity
  1604. startDate: '2023-04-20T17:06:27.932610-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:58:38.841576-04:00'
  1619. contentSize: 35215714
  1620. contentUrl:
  1621. - https://api.dandiarchive.org/api/assets/1fec0f70-38d9-43de-bce6-c94bcb43a2d5/download/
  1622. - https://dandiarchive-embargo.s3.amazonaws.com/000486/blobs/a8a/405/a8a40562-d567-4c2c-8a52-39ed47bd9310
  1623. dateModified: '2023-04-20T17:06:28.018446-04:00'
  1624. digest:
  1625. dandi:dandi-etag: f68a4db32a6c25b30cf930ca2b483ad9-1
  1626. dandi:sha2-256: 9f49f3430a9cfcf85fb9c94ca0204b739f7113dde560957cb45a6ecfbfd238bf
  1627. encodingFormat: application/x-nwb
  1628. id: dandiasset:1fec0f70-38d9-43de-bce6-c94bcb43a2d5
  1629. identifier: 1fec0f70-38d9-43de-bce6-c94bcb43a2d5
  1630. measurementTechnique:
  1631. - name: analytical technique
  1632. schemaKey: MeasurementTechniqueType
  1633. - name: behavioral technique
  1634. schemaKey: MeasurementTechniqueType
  1635. path: sub-Replay-Plaid-warm-25-nachet/sub-Replay-Plaid-warm-25-nachet_ses-20230327T165300_behavior.nwb
  1636. schemaKey: Asset
  1637. schemaVersion: 0.6.4
  1638. variableMeasured:
  1639. - schemaKey: PropertyValue
  1640. value: CompassDirection
  1641. - schemaKey: PropertyValue
  1642. value: Position
  1643. - schemaKey: PropertyValue
  1644. value: ProcessingModule
  1645. - schemaKey: PropertyValue
  1646. value: SpatialSeries
  1647. wasAttributedTo:
  1648. - age:
  1649. schemaKey: PropertyValue
  1650. unitText: ISO-8601 duration
  1651. value: P6DT60780S
  1652. valueReference:
  1653. schemaKey: PropertyValue
  1654. value: dandi:BirthReference
  1655. identifier: Replay_Plaid_warm_25_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 replay experiment
  1666. name: Acquisition session
  1667. schemaKey: Session
  1668. startDate: '2023-03-27T16:53:00-04:00'
  1669. - description: Metadata generated by DANDI cli
  1670. endDate: '2023-04-20T17:06:28.018446-04:00'
  1671. id: urn:uuid:4f7e154a-8829-4caf-8faf-1b25e038de65
  1672. name: Metadata generation
  1673. schemaKey: Activity
  1674. startDate: '2023-04-20T17:06:27.977370-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:59:27.927077-04:00'
  1689. contentSize: 34899796
  1690. contentUrl:
  1691. - https://api.dandiarchive.org/api/assets/ccdecd80-2a33-4e18-a63d-5334143057d4/download/
  1692. - https://dandiarchive-embargo.s3.amazonaws.com/000486/blobs/ed2/321/ed2321ee-bec4-4d88-9a5a-3223ee5f6853
  1693. dateModified: '2023-04-20T17:06:32.558282-04:00'
  1694. digest:
  1695. dandi:dandi-etag: 3cf095b1dfd68bfcbe4b00cfc8284c46-1
  1696. dandi:sha2-256: 6e3c252f984fd073e7d0ecda0730d22058677af3a4afa1d13f23fb97f30cd7d8
  1697. encodingFormat: application/x-nwb
  1698. id: dandiasset:ccdecd80-2a33-4e18-a63d-5334143057d4
  1699. identifier: ccdecd80-2a33-4e18-a63d-5334143057d4
  1700. measurementTechnique:
  1701. - name: analytical technique
  1702. schemaKey: MeasurementTechniqueType
  1703. - name: behavioral technique
  1704. schemaKey: MeasurementTechniqueType
  1705. path: sub-Replay-Plaid-warm-29-nachet/sub-Replay-Plaid-warm-29-nachet_ses-20230404T125700_behavior.nwb
  1706. schemaKey: Asset
  1707. schemaVersion: 0.6.4
  1708. variableMeasured:
  1709. - schemaKey: PropertyValue
  1710. value: CompassDirection
  1711. - schemaKey: PropertyValue
  1712. value: Position
  1713. - schemaKey: PropertyValue
  1714. value: ProcessingModule
  1715. - schemaKey: PropertyValue
  1716. value: SpatialSeries
  1717. wasAttributedTo:
  1718. - age:
  1719. schemaKey: PropertyValue
  1720. unitText: ISO-8601 duration
  1721. value: P5DT46620S
  1722. valueReference:
  1723. schemaKey: PropertyValue
  1724. value: dandi:BirthReference
  1725. identifier: Replay_Plaid_warm_29_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 replay experiment
  1736. name: Acquisition session
  1737. schemaKey: Session
  1738. startDate: '2023-04-04T12:57:00-04:00'
  1739. - description: Metadata generated by DANDI cli
  1740. endDate: '2023-04-20T17:06:32.558282-04:00'
  1741. id: urn:uuid:9a01ec83-f5e4-4678-a594-e31adcce02ed
  1742. name: Metadata generation
  1743. schemaKey: Activity
  1744. startDate: '2023-04-20T17:06:32.558282-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:59:03.594683-04:00'
  1759. contentSize: 34834444
  1760. contentUrl:
  1761. - https://api.dandiarchive.org/api/assets/4cae09d9-628c-43f0-917f-a4c35ebe9471/download/
  1762. - https://dandiarchive-embargo.s3.amazonaws.com/000486/blobs/60a/483/60a4830e-ac50-48ee-abc5-518bf37fc06d
  1763. dateModified: '2023-04-20T17:06:32.007521-04:00'
  1764. digest:
  1765. dandi:dandi-etag: 13d7f89486c6cafa9f5bc8ac1fe5f451-1
  1766. dandi:sha2-256: 01a32295222bdcb3ea01e27fd0a7454e86cddec75457b2df5b8833233c092ea2
  1767. encodingFormat: application/x-nwb
  1768. id: dandiasset:4cae09d9-628c-43f0-917f-a4c35ebe9471
  1769. identifier: 4cae09d9-628c-43f0-917f-a4c35ebe9471
  1770. measurementTechnique:
  1771. - name: analytical technique
  1772. schemaKey: MeasurementTechniqueType
  1773. - name: behavioral technique
  1774. schemaKey: MeasurementTechniqueType
  1775. path: sub-Replay-Plaid-warm-28-nachet/sub-Replay-Plaid-warm-28-nachet_ses-20230328T161500_behavior.nwb
  1776. schemaKey: Asset
  1777. schemaVersion: 0.6.4
  1778. variableMeasured:
  1779. - schemaKey: PropertyValue
  1780. value: CompassDirection
  1781. - schemaKey: PropertyValue
  1782. value: Position
  1783. - schemaKey: PropertyValue
  1784. value: ProcessingModule
  1785. - schemaKey: PropertyValue
  1786. value: SpatialSeries
  1787. wasAttributedTo:
  1788. - age:
  1789. schemaKey: PropertyValue
  1790. unitText: ISO-8601 duration
  1791. value: P7DT58500S
  1792. valueReference:
  1793. schemaKey: PropertyValue
  1794. value: dandi:BirthReference
  1795. identifier: Replay_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 replay experiment
  1806. name: Acquisition session
  1807. schemaKey: Session
  1808. startDate: '2023-03-28T16:15:00-04:00'
  1809. - description: Metadata generated by DANDI cli
  1810. endDate: '2023-04-20T17:06:32.007521-04:00'
  1811. id: urn:uuid:7087422b-bd15-4218-8e3e-c5c9d658925b
  1812. name: Metadata generation
  1813. schemaKey: Activity
  1814. startDate: '2023-04-20T17:06:31.957662-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:59:39.987402-04:00'
  1829. contentSize: 35396393
  1830. contentUrl:
  1831. - https://api.dandiarchive.org/api/assets/cc390f47-a9fb-42eb-a136-138a6a7d3a19/download/
  1832. - https://dandiarchive-embargo.s3.amazonaws.com/000486/blobs/14f/73f/14f73f3b-20be-4602-8286-c124378f3a7a
  1833. dateModified: '2023-04-20T17:06:32.737934-04:00'
  1834. digest:
  1835. dandi:dandi-etag: 795de544220200b84be60842bb9a366d-1
  1836. dandi:sha2-256: 00c5cf217dd0812f1903a490130defc8251155cdcf2d1870fbedc8eceb8b2e72
  1837. encodingFormat: application/x-nwb
  1838. id: dandiasset:cc390f47-a9fb-42eb-a136-138a6a7d3a19
  1839. identifier: cc390f47-a9fb-42eb-a136-138a6a7d3a19
  1840. measurementTechnique:
  1841. - name: analytical technique
  1842. schemaKey: MeasurementTechniqueType
  1843. - name: behavioral technique
  1844. schemaKey: MeasurementTechniqueType
  1845. path: sub-Replay-Plaid-warm-30-nachet/sub-Replay-Plaid-warm-30-nachet_ses-20230404T150000_behavior.nwb
  1846. schemaKey: Asset
  1847. schemaVersion: 0.6.4
  1848. variableMeasured:
  1849. - schemaKey: PropertyValue
  1850. value: CompassDirection
  1851. - schemaKey: PropertyValue
  1852. value: Position
  1853. - schemaKey: PropertyValue
  1854. value: ProcessingModule
  1855. - schemaKey: PropertyValue
  1856. value: SpatialSeries
  1857. wasAttributedTo:
  1858. - age:
  1859. schemaKey: PropertyValue
  1860. unitText: ISO-8601 duration
  1861. value: P5DT54000S
  1862. valueReference:
  1863. schemaKey: PropertyValue
  1864. value: dandi:BirthReference
  1865. identifier: Replay_Plaid_warm_30_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 replay experiment
  1876. name: Acquisition session
  1877. schemaKey: Session
  1878. startDate: '2023-04-04T15:00:00-04:00'
  1879. - description: Metadata generated by DANDI cli
  1880. endDate: '2023-04-20T17:06:32.737934-04:00'
  1881. id: urn:uuid:2f3043cc-a76f-418e-9ab7-6f4e74040f07
  1882. name: Metadata generation
  1883. schemaKey: Activity
  1884. startDate: '2023-04-20T17:06:32.737934-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-20T17:00:03.987889-04:00'
  1899. contentSize: 35622053
  1900. contentUrl:
  1901. - https://api.dandiarchive.org/api/assets/f6aacdae-6aad-4295-aa5a-14644bf61011/download/
  1902. - https://dandiarchive-embargo.s3.amazonaws.com/000486/blobs/d93/9db/d939db26-1105-473b-9074-beaf1925bc10
  1903. dateModified: '2023-04-20T17:06:34.033564-04:00'
  1904. digest:
  1905. dandi:dandi-etag: bfa4a089511bd5385a665bf29ea24ba0-1
  1906. dandi:sha2-256: 426398c4e9048bdb3e062d7d9a93f153451b72fcf274ed55b2e730769787b485
  1907. encodingFormat: application/x-nwb
  1908. id: dandiasset:f6aacdae-6aad-4295-aa5a-14644bf61011
  1909. identifier: f6aacdae-6aad-4295-aa5a-14644bf61011
  1910. measurementTechnique:
  1911. - name: analytical technique
  1912. schemaKey: MeasurementTechniqueType
  1913. - name: behavioral technique
  1914. schemaKey: MeasurementTechniqueType
  1915. path: sub-Replay-Plaid-warm-32-nachet/sub-Replay-Plaid-warm-32-nachet_ses-20230411T122100_behavior.nwb
  1916. schemaKey: Asset
  1917. schemaVersion: 0.6.4
  1918. variableMeasured:
  1919. - schemaKey: PropertyValue
  1920. value: CompassDirection
  1921. - schemaKey: PropertyValue
  1922. value: Position
  1923. - schemaKey: PropertyValue
  1924. value: ProcessingModule
  1925. - schemaKey: PropertyValue
  1926. value: SpatialSeries
  1927. wasAttributedTo:
  1928. - age:
  1929. schemaKey: PropertyValue
  1930. unitText: ISO-8601 duration
  1931. value: P5DT44460S
  1932. valueReference:
  1933. schemaKey: PropertyValue
  1934. value: dandi:BirthReference
  1935. identifier: Replay_Plaid_warm_32_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 replay experiment
  1946. name: Acquisition session
  1947. schemaKey: Session
  1948. startDate: '2023-04-11T12:21:00-04:00'
  1949. - description: Metadata generated by DANDI cli
  1950. endDate: '2023-04-20T17:06:34.033564-04:00'
  1951. id: urn:uuid:e0b9a5c2-25ec-4879-ae69-c51693147a99
  1952. name: Metadata generation
  1953. schemaKey: Activity
  1954. startDate: '2023-04-20T17:06:34.023911-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:58:51.467693-04:00'
  1969. contentSize: 35132394
  1970. contentUrl:
  1971. - https://api.dandiarchive.org/api/assets/03db4188-df67-42aa-b040-0c608c86a0f1/download/
  1972. - https://dandiarchive-embargo.s3.amazonaws.com/000486/blobs/624/235/62423586-088d-4fc1-b670-2166fc090b20
  1973. dateModified: '2023-04-20T17:06:32.377933-04:00'
  1974. digest:
  1975. dandi:dandi-etag: 3b429c0e147d993b8d4c6781148ba460-1
  1976. dandi:sha2-256: c0b30d6a4f3cffbe649877af6e9691bcbbdc0b258af953422e69b7b3bc34df5b
  1977. encodingFormat: application/x-nwb
  1978. id: dandiasset:03db4188-df67-42aa-b040-0c608c86a0f1
  1979. identifier: 03db4188-df67-42aa-b040-0c608c86a0f1
  1980. measurementTechnique:
  1981. - name: analytical technique
  1982. schemaKey: MeasurementTechniqueType
  1983. - name: behavioral technique
  1984. schemaKey: MeasurementTechniqueType
  1985. path: sub-Replay-Plaid-warm-27-nachet/sub-Replay-Plaid-warm-27-nachet_ses-20230328T123900_behavior.nwb
  1986. schemaKey: Asset
  1987. schemaVersion: 0.6.4
  1988. variableMeasured:
  1989. - schemaKey: PropertyValue
  1990. value: CompassDirection
  1991. - schemaKey: PropertyValue
  1992. value: Position
  1993. - schemaKey: PropertyValue
  1994. value: ProcessingModule
  1995. - schemaKey: PropertyValue
  1996. value: SpatialSeries
  1997. wasAttributedTo:
  1998. - age:
  1999. schemaKey: PropertyValue
  2000. unitText: ISO-8601 duration
  2001. value: P7DT45540S
  2002. valueReference:
  2003. schemaKey: PropertyValue
  2004. value: dandi:BirthReference
  2005. identifier: Replay_Plaid_warm_27_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 replay experiment
  2016. name: Acquisition session
  2017. schemaKey: Session
  2018. startDate: '2023-03-28T12:39:00-04:00'
  2019. - description: Metadata generated by DANDI cli
  2020. endDate: '2023-04-20T17:06:32.377933-04:00'
  2021. id: urn:uuid:de7762a6-0592-49a4-8891-290c90213ab4
  2022. name: Metadata generation
  2023. schemaKey: Activity
  2024. startDate: '2023-04-20T17:06:32.368282-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-20T17:00:16.243239-04:00'
  2039. contentSize: 35496246
  2040. contentUrl:
  2041. - https://api.dandiarchive.org/api/assets/ce818567-fe1e-41a1-b8de-6942459a6363/download/
  2042. - https://dandiarchive-embargo.s3.amazonaws.com/000486/blobs/5b3/383/5b338315-bfc9-426f-9258-d3d44a39fd72
  2043. dateModified: '2023-04-20T17:06:37.402195-04:00'
  2044. digest:
  2045. dandi:dandi-etag: e6a5dd8dd42902d3b4e244dadbd8099f-1
  2046. dandi:sha2-256: d0c80127a59bfc4af45e2c6d6634fed15fa9a4deedc784ae5341710730db6e21
  2047. encodingFormat: application/x-nwb
  2048. id: dandiasset:ce818567-fe1e-41a1-b8de-6942459a6363
  2049. identifier: ce818567-fe1e-41a1-b8de-6942459a6363
  2050. measurementTechnique:
  2051. - name: analytical technique
  2052. schemaKey: MeasurementTechniqueType
  2053. - name: behavioral technique
  2054. schemaKey: MeasurementTechniqueType
  2055. path: sub-Replay-Plaid-warm-33-nachet/sub-Replay-Plaid-warm-33-nachet_ses-20230411T150800_behavior.nwb
  2056. schemaKey: Asset
  2057. schemaVersion: 0.6.4
  2058. variableMeasured:
  2059. - schemaKey: PropertyValue
  2060. value: CompassDirection
  2061. - schemaKey: PropertyValue
  2062. value: Position
  2063. - schemaKey: PropertyValue
  2064. value: ProcessingModule
  2065. - schemaKey: PropertyValue
  2066. value: SpatialSeries
  2067. wasAttributedTo:
  2068. - age:
  2069. schemaKey: PropertyValue
  2070. unitText: ISO-8601 duration
  2071. value: P5DT54480S
  2072. valueReference:
  2073. schemaKey: PropertyValue
  2074. value: dandi:BirthReference
  2075. identifier: Replay_Plaid_warm_33_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 replay experiment
  2086. name: Acquisition session
  2087. schemaKey: Session
  2088. startDate: '2023-04-11T15:08:00-04:00'
  2089. - description: Metadata generated by DANDI cli
  2090. endDate: '2023-04-20T17:06:37.402195-04:00'
  2091. id: urn:uuid:e5bc2a82-6bce-4245-90a0-47e2cabccf1b
  2092. name: Metadata generation
  2093. schemaKey: Activity
  2094. startDate: '2023-04-20T17:06:37.392432-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-20T17:00:28.062441-04:00'
  2109. contentSize: 34693036
  2110. contentUrl:
  2111. - https://api.dandiarchive.org/api/assets/36ab0a17-d3a2-4713-8806-dd3830b52c30/download/
  2112. - https://dandiarchive-embargo.s3.amazonaws.com/000486/blobs/7d1/3c3/7d13c3ab-9040-480d-a1ee-c7195c6e7e09
  2113. dateModified: '2023-04-20T17:06:37.860892-04:00'
  2114. digest:
  2115. dandi:dandi-etag: b627ba4ae13a2740439362f452bbd0d9-1
  2116. dandi:sha2-256: 2fdf2a47d7538a569b66802c1ef44ccbc3df4f8eafd0cde2076bb95defee28a1
  2117. encodingFormat: application/x-nwb
  2118. id: dandiasset:36ab0a17-d3a2-4713-8806-dd3830b52c30
  2119. identifier: 36ab0a17-d3a2-4713-8806-dd3830b52c30
  2120. measurementTechnique:
  2121. - name: analytical technique
  2122. schemaKey: MeasurementTechniqueType
  2123. - name: behavioral technique
  2124. schemaKey: MeasurementTechniqueType
  2125. path: sub-Replay-Plaid-warm-34-nachet/sub-Replay-Plaid-warm-34-nachet_ses-20230411T165700_behavior.nwb
  2126. schemaKey: Asset
  2127. schemaVersion: 0.6.4
  2128. variableMeasured:
  2129. - schemaKey: PropertyValue
  2130. value: CompassDirection
  2131. - schemaKey: PropertyValue
  2132. value: Position
  2133. - schemaKey: PropertyValue
  2134. value: ProcessingModule
  2135. - schemaKey: PropertyValue
  2136. value: SpatialSeries
  2137. wasAttributedTo:
  2138. - age:
  2139. schemaKey: PropertyValue
  2140. unitText: ISO-8601 duration
  2141. value: P5DT61020S
  2142. valueReference:
  2143. schemaKey: PropertyValue
  2144. value: dandi:BirthReference
  2145. identifier: Replay_Plaid_warm_34_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 replay experiment
  2156. name: Acquisition session
  2157. schemaKey: Session
  2158. startDate: '2023-04-11T16:57:00-04:00'
  2159. - description: Metadata generated by DANDI cli
  2160. endDate: '2023-04-20T17:06:37.860892-04:00'
  2161. id: urn:uuid:928ce41f-cf0f-4b80-a1c8-62f5430e42c5
  2162. name: Metadata generation
  2163. schemaKey: Activity
  2164. startDate: '2023-04-20T17:06:37.856902-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-20T17:00:40.011495-04:00'
  2179. contentSize: 35486967
  2180. contentUrl:
  2181. - https://api.dandiarchive.org/api/assets/35347872-43e8-4c09-be42-4d9a8fb44c1e/download/
  2182. - https://dandiarchive-embargo.s3.amazonaws.com/000486/blobs/d7d/942/d7d9423f-f8d0-4025-800e-668232e3003b
  2183. dateModified: '2023-04-20T17:06:38.166912-04:00'
  2184. digest:
  2185. dandi:dandi-etag: 32fd6f0ad61faa9581b9e403171b09d9-1
  2186. dandi:sha2-256: e12517913db9e46f956f7080dc211763a22a66673ca6dd2307907141f072a17a
  2187. encodingFormat: application/x-nwb
  2188. id: dandiasset:35347872-43e8-4c09-be42-4d9a8fb44c1e
  2189. identifier: 35347872-43e8-4c09-be42-4d9a8fb44c1e
  2190. measurementTechnique:
  2191. - name: analytical technique
  2192. schemaKey: MeasurementTechniqueType
  2193. - name: behavioral technique
  2194. schemaKey: MeasurementTechniqueType
  2195. path: sub-Replay-Plaid-warm-35-nachet/sub-Replay-Plaid-warm-35-nachet_ses-20230412T114800_behavior.nwb
  2196. schemaKey: Asset
  2197. schemaVersion: 0.6.4
  2198. variableMeasured:
  2199. - schemaKey: PropertyValue
  2200. value: CompassDirection
  2201. - schemaKey: PropertyValue
  2202. value: Position
  2203. - schemaKey: PropertyValue
  2204. value: ProcessingModule
  2205. - schemaKey: PropertyValue
  2206. value: SpatialSeries
  2207. wasAttributedTo:
  2208. - age:
  2209. schemaKey: PropertyValue
  2210. unitText: ISO-8601 duration
  2211. value: P6DT42480S
  2212. valueReference:
  2213. schemaKey: PropertyValue
  2214. value: dandi:BirthReference
  2215. identifier: Replay_Plaid_warm_35_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 replay experiment
  2226. name: Acquisition session
  2227. schemaKey: Session
  2228. startDate: '2023-04-12T11:48:00-04:00'
  2229. - description: Metadata generated by DANDI cli
  2230. endDate: '2023-04-20T17:06:38.166912-04:00'
  2231. id: urn:uuid:3d0a3632-3fe5-46b1-b6e6-45f48efb67d3
  2232. name: Metadata generation
  2233. schemaKey: Activity
  2234. startDate: '2023-04-20T17:06:38.106911-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-20T17:00:51.816464-04:00'
  2249. contentSize: 35466903
  2250. contentUrl:
  2251. - https://api.dandiarchive.org/api/assets/50ebe779-7ab7-47dc-b8e9-99d00455a735/download/
  2252. - https://dandiarchive-embargo.s3.amazonaws.com/000486/blobs/8b0/8c1/8b08c1e9-dc57-496e-8ee7-417e911c40f1
  2253. dateModified: '2023-04-20T17:06:39.106904-04:00'
  2254. digest:
  2255. dandi:dandi-etag: 36e1481a6ab1723d26b526e422cc9062-1
  2256. dandi:sha2-256: cca44fc31d914ce141b127d134864368f11c22ebce881c266e931d7817011720
  2257. encodingFormat: application/x-nwb
  2258. id: dandiasset:50ebe779-7ab7-47dc-b8e9-99d00455a735
  2259. identifier: 50ebe779-7ab7-47dc-b8e9-99d00455a735
  2260. measurementTechnique:
  2261. - name: analytical technique
  2262. schemaKey: MeasurementTechniqueType
  2263. - name: behavioral technique
  2264. schemaKey: MeasurementTechniqueType
  2265. path: sub-Replay-Plaid-warm-36-nachet/sub-Replay-Plaid-warm-36-nachet_ses-20230412T133900_behavior.nwb
  2266. schemaKey: Asset
  2267. schemaVersion: 0.6.4
  2268. variableMeasured:
  2269. - schemaKey: PropertyValue
  2270. value: CompassDirection
  2271. - schemaKey: PropertyValue
  2272. value: Position
  2273. - schemaKey: PropertyValue
  2274. value: ProcessingModule
  2275. - schemaKey: PropertyValue
  2276. value: SpatialSeries
  2277. wasAttributedTo:
  2278. - age:
  2279. schemaKey: PropertyValue
  2280. unitText: ISO-8601 duration
  2281. value: P6DT49140S
  2282. valueReference:
  2283. schemaKey: PropertyValue
  2284. value: dandi:BirthReference
  2285. identifier: Replay_Plaid_warm_36_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 replay experiment
  2296. name: Acquisition session
  2297. schemaKey: Session
  2298. startDate: '2023-04-12T13:39:00-04:00'
  2299. - description: Metadata generated by DANDI cli
  2300. endDate: '2023-04-20T17:06:39.106904-04:00'
  2301. id: urn:uuid:47320aa3-06ad-4084-9aac-c0998b945bcb
  2302. name: Metadata generation
  2303. schemaKey: Activity
  2304. startDate: '2023-04-20T17:06:39.106904-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-20T17:01:03.633817-04:00'
  2319. contentSize: 35163808
  2320. contentUrl:
  2321. - https://api.dandiarchive.org/api/assets/05061d3b-9de4-4af1-93f2-848b8cb31b9e/download/
  2322. - https://dandiarchive-embargo.s3.amazonaws.com/000486/blobs/869/f9d/869f9d8f-f889-49f6-afb9-d402bf8adc49
  2323. dateModified: '2023-04-20T17:06:40.987441-04:00'
  2324. digest:
  2325. dandi:dandi-etag: 524262e3c73dcffd5abe2c045a523789-1
  2326. dandi:sha2-256: 407ad9a9807f8c3b48ddac0d985bb1ff3002e07c7b3dcb39193732b81dbef4f3
  2327. encodingFormat: application/x-nwb
  2328. id: dandiasset:05061d3b-9de4-4af1-93f2-848b8cb31b9e
  2329. identifier: 05061d3b-9de4-4af1-93f2-848b8cb31b9e
  2330. measurementTechnique:
  2331. - name: analytical technique
  2332. schemaKey: MeasurementTechniqueType
  2333. - name: behavioral technique
  2334. schemaKey: MeasurementTechniqueType
  2335. path: sub-Replay-Plaid-warm-37-nachet/sub-Replay-Plaid-warm-37-nachet_ses-20230412T153000_behavior.nwb
  2336. schemaKey: Asset
  2337. schemaVersion: 0.6.4
  2338. variableMeasured:
  2339. - schemaKey: PropertyValue
  2340. value: CompassDirection
  2341. - schemaKey: PropertyValue
  2342. value: Position
  2343. - schemaKey: PropertyValue
  2344. value: ProcessingModule
  2345. - schemaKey: PropertyValue
  2346. value: SpatialSeries
  2347. wasAttributedTo:
  2348. - age:
  2349. schemaKey: PropertyValue
  2350. unitText: ISO-8601 duration
  2351. value: P6DT55800S
  2352. valueReference:
  2353. schemaKey: PropertyValue
  2354. value: dandi:BirthReference
  2355. identifier: Replay_Plaid_warm_37_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 replay experiment
  2366. name: Acquisition session
  2367. schemaKey: Session
  2368. startDate: '2023-04-12T15:30:00-04:00'
  2369. - description: Metadata generated by DANDI cli
  2370. endDate: '2023-04-20T17:06:40.987441-04:00'
  2371. id: urn:uuid:9abbd229-6ca5-4fb5-bf13-81815648379d
  2372. name: Metadata generation
  2373. schemaKey: Activity
  2374. startDate: '2023-04-20T17:06:40.977438-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:59:15.837459-04:00'
  2389. contentSize: 35345923
  2390. contentUrl:
  2391. - https://api.dandiarchive.org/api/assets/8af99cc7-d89a-461b-aec3-d919b65ba0b4/download/
  2392. - https://dandiarchive-embargo.s3.amazonaws.com/000486/blobs/0d9/14b/0d914b0f-f518-4dcf-8401-03cf1ae13386
  2393. dateModified: '2023-04-20T17:06:41.953116-04:00'
  2394. digest:
  2395. dandi:dandi-etag: be380866a8753f1bcddce845312f075b-1
  2396. dandi:sha2-256: ef6e0d89369801811a8e56f01c03298b5974ea124aab60cdc1fe70674f30c51c
  2397. encodingFormat: application/x-nwb
  2398. id: dandiasset:8af99cc7-d89a-461b-aec3-d919b65ba0b4
  2399. identifier: 8af99cc7-d89a-461b-aec3-d919b65ba0b4
  2400. measurementTechnique:
  2401. - name: analytical technique
  2402. schemaKey: MeasurementTechniqueType
  2403. - name: behavioral technique
  2404. schemaKey: MeasurementTechniqueType
  2405. path: sub-Replay-warm-26-nachet/sub-Replay-warm-26-nachet_ses-20230328T103700_behavior.nwb
  2406. schemaKey: Asset
  2407. schemaVersion: 0.6.4
  2408. variableMeasured:
  2409. - schemaKey: PropertyValue
  2410. value: CompassDirection
  2411. - schemaKey: PropertyValue
  2412. value: Position
  2413. - schemaKey: PropertyValue
  2414. value: ProcessingModule
  2415. - schemaKey: PropertyValue
  2416. value: SpatialSeries
  2417. wasAttributedTo:
  2418. - age:
  2419. schemaKey: PropertyValue
  2420. unitText: ISO-8601 duration
  2421. value: P7DT38220S
  2422. valueReference:
  2423. schemaKey: PropertyValue
  2424. value: dandi:BirthReference
  2425. identifier: Replay_warm_26_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 replay experiment
  2436. name: Acquisition session
  2437. schemaKey: Session
  2438. startDate: '2023-03-28T10:37:00-04:00'
  2439. - description: Metadata generated by DANDI cli
  2440. endDate: '2023-04-20T17:06:41.953116-04:00'
  2441. id: urn:uuid:3037c4dc-bb68-4937-83d1-77e489be4b05
  2442. name: Metadata generation
  2443. schemaKey: Activity
  2444. startDate: '2023-04-20T17:06:41.953116-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:59:51.851629-04:00'
  2459. contentSize: 35230303
  2460. contentUrl:
  2461. - https://api.dandiarchive.org/api/assets/2b65ac67-f32c-4f37-a283-0c0107f0e0a4/download/
  2462. - https://dandiarchive-embargo.s3.amazonaws.com/000486/blobs/e87/3ca/e873ca46-cada-4a53-9a83-d3bf120cbc31
  2463. dateModified: '2023-04-20T17:06:41.953116-04:00'
  2464. digest:
  2465. dandi:dandi-etag: c3d866b9369c7a42fd975f4ecbffff72-1
  2466. dandi:sha2-256: 024efd2a21d8a90f04f7ca70140008f453dde05cb517dfb58ce4dbd6d6c10e4b
  2467. encodingFormat: application/x-nwb
  2468. id: dandiasset:2b65ac67-f32c-4f37-a283-0c0107f0e0a4
  2469. identifier: 2b65ac67-f32c-4f37-a283-0c0107f0e0a4
  2470. measurementTechnique:
  2471. - name: analytical technique
  2472. schemaKey: MeasurementTechniqueType
  2473. - name: behavioral technique
  2474. schemaKey: MeasurementTechniqueType
  2475. path: sub-Replay-warm-31-nachet/sub-Replay-warm-31-nachet_ses-20230404T170700_behavior.nwb
  2476. schemaKey: Asset
  2477. schemaVersion: 0.6.4
  2478. variableMeasured:
  2479. - schemaKey: PropertyValue
  2480. value: CompassDirection
  2481. - schemaKey: PropertyValue
  2482. value: Position
  2483. - schemaKey: PropertyValue
  2484. value: ProcessingModule
  2485. - schemaKey: PropertyValue
  2486. value: SpatialSeries
  2487. wasAttributedTo:
  2488. - age:
  2489. schemaKey: PropertyValue
  2490. unitText: ISO-8601 duration
  2491. value: P5DT61620S
  2492. valueReference:
  2493. schemaKey: PropertyValue
  2494. value: dandi:BirthReference
  2495. identifier: Replay_warm_31_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 replay experiment
  2506. name: Acquisition session
  2507. schemaKey: Session
  2508. startDate: '2023-04-04T17:07:00-04:00'
  2509. - description: Metadata generated by DANDI cli
  2510. endDate: '2023-04-20T17:06:41.953116-04:00'
  2511. id: urn:uuid:57bbbfd6-8c02-4e84-9643-063f6253df3a
  2512. name: Metadata generation
  2513. schemaKey: Activity
  2514. startDate: '2023-04-20T17:06:41.923116-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
Tip!

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

Comments

Loading...