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 50 KB
Raw

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
  1. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2. access:
  3. - schemaKey: AccessRequirements
  4. status: dandi:EmbargoedAccess
  5. approach:
  6. - name: behavioral approach
  7. schemaKey: ApproachType
  8. blobDateModified: '2023-11-10T11:54:22.150000-05:00'
  9. contentSize: 9493175
  10. contentUrl:
  11. - https://api.dandiarchive.org/api/assets/908efcf5-e4e2-4071-a7cd-f662cbb32319/download/
  12. - https://dandiarchive.s3.amazonaws.com/blobs/874/fc9/874fc92e-cae7-4eb4-a1a9-4731f45b854a
  13. dateModified: '2023-11-11T11:08:49.701302-05:00'
  14. digest:
  15. dandi:dandi-etag: 9041cfa3a0a05a3df6996d2b77426005-1
  16. dandi:sha2-256: e2ad0c9022748b59070063f83df587249fab752ca760cf69f3be6e88cc56c0da
  17. encodingFormat: application/x-nwb
  18. id: dandiasset:908efcf5-e4e2-4071-a7cd-f662cbb32319
  19. identifier: 908efcf5-e4e2-4071-a7cd-f662cbb32319
  20. measurementTechnique:
  21. - name: analytical technique
  22. schemaKey: MeasurementTechniqueType
  23. - name: behavioral technique
  24. schemaKey: MeasurementTechniqueType
  25. path: sub-Temp-pref-F32-B32-5dpf-01-unsorted-nac/sub-Temp-pref-F32-B32-5dpf-01-unsorted-nac_ses-20230711T115100_behavior.nwb
  26. schemaKey: Asset
  27. schemaVersion: 0.6.4
  28. variableMeasured:
  29. - schemaKey: PropertyValue
  30. value: CompassDirection
  31. - schemaKey: PropertyValue
  32. value: BehavioralTimeSeries
  33. - schemaKey: PropertyValue
  34. value: Position
  35. - schemaKey: PropertyValue
  36. value: SpatialSeries
  37. - schemaKey: PropertyValue
  38. value: ProcessingModule
  39. wasAttributedTo:
  40. - age:
  41. schemaKey: PropertyValue
  42. unitText: ISO-8601 duration
  43. value: P5DT42660S
  44. valueReference:
  45. schemaKey: PropertyValue
  46. value: dandi:BirthReference
  47. identifier: Temp_pref_F32_B32_5dpf_01_unsorted_nac
  48. schemaKey: Participant
  49. sex:
  50. name: Unknown
  51. schemaKey: SexType
  52. species:
  53. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  54. name: Danio rerio - Zebra fish
  55. schemaKey: SpeciesType
  56. wasGeneratedBy:
  57. - description: Hot Avoidance behavior
  58. name: Acquisition session
  59. schemaKey: Session
  60. startDate: '2023-07-11T11:51:00-04:00'
  61. - description: Metadata generated by DANDI cli
  62. endDate: '2023-11-11T11:08:49.701302-05:00'
  63. id: urn:uuid:91d177d5-7fe9-41ce-8ffc-66bd9dbb8928
  64. name: Metadata generation
  65. schemaKey: Activity
  66. startDate: '2023-11-11T11:08:49.671651-05:00'
  67. wasAssociatedWith:
  68. - identifier: RRID:SCR_019009
  69. name: DANDI Command Line Interface
  70. schemaKey: Software
  71. url: https://github.com/dandi/dandi-cli
  72. version: 0.58.0
  73. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  74. access:
  75. - schemaKey: AccessRequirements
  76. status: dandi:EmbargoedAccess
  77. approach:
  78. - name: behavioral approach
  79. schemaKey: ApproachType
  80. blobDateModified: '2023-11-10T11:54:25.680000-05:00'
  81. contentSize: 9672745
  82. contentUrl:
  83. - https://api.dandiarchive.org/api/assets/e549d6ea-34ed-44e5-890d-75dc8d3eaa11/download/
  84. - https://dandiarchive.s3.amazonaws.com/blobs/63d/b17/63db17ea-1650-4555-b6d9-cb7600749671
  85. dateModified: '2023-11-11T11:08:49.861303-05:00'
  86. digest:
  87. dandi:dandi-etag: 53c5ff5b52ac3f5f7f1e7d75d7eed8db-1
  88. dandi:sha2-256: 706ea710ec4c22c2c03d7a18b6f6ae63c7cee1131596436306989118dda93325
  89. encodingFormat: application/x-nwb
  90. id: dandiasset:e549d6ea-34ed-44e5-890d-75dc8d3eaa11
  91. identifier: e549d6ea-34ed-44e5-890d-75dc8d3eaa11
  92. measurementTechnique:
  93. - name: analytical technique
  94. schemaKey: MeasurementTechniqueType
  95. - name: behavioral technique
  96. schemaKey: MeasurementTechniqueType
  97. path: sub-Temp-pref-F32-B32-5dpf-02-unsorted-nac/sub-Temp-pref-F32-B32-5dpf-02-unsorted-nac_ses-20230711T122700_behavior.nwb
  98. schemaKey: Asset
  99. schemaVersion: 0.6.4
  100. variableMeasured:
  101. - schemaKey: PropertyValue
  102. value: CompassDirection
  103. - schemaKey: PropertyValue
  104. value: BehavioralTimeSeries
  105. - schemaKey: PropertyValue
  106. value: Position
  107. - schemaKey: PropertyValue
  108. value: SpatialSeries
  109. - schemaKey: PropertyValue
  110. value: ProcessingModule
  111. wasAttributedTo:
  112. - age:
  113. schemaKey: PropertyValue
  114. unitText: ISO-8601 duration
  115. value: P5DT44820S
  116. valueReference:
  117. schemaKey: PropertyValue
  118. value: dandi:BirthReference
  119. identifier: Temp_pref_F32_B32_5dpf_02_unsorted_nac
  120. schemaKey: Participant
  121. sex:
  122. name: Unknown
  123. schemaKey: SexType
  124. species:
  125. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  126. name: Danio rerio - Zebra fish
  127. schemaKey: SpeciesType
  128. wasGeneratedBy:
  129. - description: Hot Avoidance behavior
  130. name: Acquisition session
  131. schemaKey: Session
  132. startDate: '2023-07-11T12:27:00-04:00'
  133. - description: Metadata generated by DANDI cli
  134. endDate: '2023-11-11T11:08:49.861303-05:00'
  135. id: urn:uuid:35a2c389-6b59-44d5-996d-c9897e72568e
  136. name: Metadata generation
  137. schemaKey: Activity
  138. startDate: '2023-11-11T11:08:49.861303-05:00'
  139. wasAssociatedWith:
  140. - identifier: RRID:SCR_019009
  141. name: DANDI Command Line Interface
  142. schemaKey: Software
  143. url: https://github.com/dandi/dandi-cli
  144. version: 0.58.0
  145. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  146. access:
  147. - schemaKey: AccessRequirements
  148. status: dandi:EmbargoedAccess
  149. approach:
  150. - name: behavioral approach
  151. schemaKey: ApproachType
  152. blobDateModified: '2023-11-10T11:54:29.140000-05:00'
  153. contentSize: 9590849
  154. contentUrl:
  155. - https://api.dandiarchive.org/api/assets/b949a229-fd37-4cec-933f-082aa543f119/download/
  156. - https://dandiarchive.s3.amazonaws.com/blobs/fed/67e/fed67ebf-ed7b-42c3-b200-597136d7409c
  157. dateModified: '2023-11-11T11:08:49.841302-05:00'
  158. digest:
  159. dandi:dandi-etag: 625e9c8b6d12a5d7d8f5ccdd9fbb152c-1
  160. dandi:sha2-256: db5bd3f809768743ae1d3912d18c477f8c9b4e4feab10eb78d42a7b15a930803
  161. encodingFormat: application/x-nwb
  162. id: dandiasset:b949a229-fd37-4cec-933f-082aa543f119
  163. identifier: b949a229-fd37-4cec-933f-082aa543f119
  164. measurementTechnique:
  165. - name: analytical technique
  166. schemaKey: MeasurementTechniqueType
  167. - name: behavioral technique
  168. schemaKey: MeasurementTechniqueType
  169. path: sub-Temp-pref-F32-B32-5dpf-03-unsorted-nac/sub-Temp-pref-F32-B32-5dpf-03-unsorted-nac_ses-20230711T130000_behavior.nwb
  170. schemaKey: Asset
  171. schemaVersion: 0.6.4
  172. variableMeasured:
  173. - schemaKey: PropertyValue
  174. value: CompassDirection
  175. - schemaKey: PropertyValue
  176. value: BehavioralTimeSeries
  177. - schemaKey: PropertyValue
  178. value: Position
  179. - schemaKey: PropertyValue
  180. value: SpatialSeries
  181. - schemaKey: PropertyValue
  182. value: ProcessingModule
  183. wasAttributedTo:
  184. - age:
  185. schemaKey: PropertyValue
  186. unitText: ISO-8601 duration
  187. value: P5DT46800S
  188. valueReference:
  189. schemaKey: PropertyValue
  190. value: dandi:BirthReference
  191. identifier: Temp_pref_F32_B32_5dpf_03_unsorted_nac
  192. schemaKey: Participant
  193. sex:
  194. name: Unknown
  195. schemaKey: SexType
  196. species:
  197. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  198. name: Danio rerio - Zebra fish
  199. schemaKey: SpeciesType
  200. wasGeneratedBy:
  201. - description: Hot Avoidance behavior
  202. name: Acquisition session
  203. schemaKey: Session
  204. startDate: '2023-07-11T13:00:00-04:00'
  205. - description: Metadata generated by DANDI cli
  206. endDate: '2023-11-11T11:08:49.841302-05:00'
  207. id: urn:uuid:b1db3101-80eb-47cd-94aa-12a6d08490a6
  208. name: Metadata generation
  209. schemaKey: Activity
  210. startDate: '2023-11-11T11:08:49.831654-05:00'
  211. wasAssociatedWith:
  212. - identifier: RRID:SCR_019009
  213. name: DANDI Command Line Interface
  214. schemaKey: Software
  215. url: https://github.com/dandi/dandi-cli
  216. version: 0.58.0
  217. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  218. access:
  219. - schemaKey: AccessRequirements
  220. status: dandi:EmbargoedAccess
  221. approach:
  222. - name: behavioral approach
  223. schemaKey: ApproachType
  224. blobDateModified: '2023-11-10T11:54:36.090000-05:00'
  225. contentSize: 9671834
  226. contentUrl:
  227. - https://api.dandiarchive.org/api/assets/05a3fcbc-79b4-4e0a-8a72-35a831dbce88/download/
  228. - https://dandiarchive.s3.amazonaws.com/blobs/504/589/504589da-394d-40da-bd92-f79e10b1c55b
  229. dateModified: '2023-11-11T11:08:49.911653-05:00'
  230. digest:
  231. dandi:dandi-etag: 546cb16bb43739445848f1bf80bcf5f9-1
  232. dandi:sha2-256: 81a0e0f8ead08f58ab532ab0fbf72437cf3371edbe49260d2c9c37db07ddce22
  233. encodingFormat: application/x-nwb
  234. id: dandiasset:05a3fcbc-79b4-4e0a-8a72-35a831dbce88
  235. identifier: 05a3fcbc-79b4-4e0a-8a72-35a831dbce88
  236. measurementTechnique:
  237. - name: analytical technique
  238. schemaKey: MeasurementTechniqueType
  239. - name: behavioral technique
  240. schemaKey: MeasurementTechniqueType
  241. path: sub-Temp-pref-F32-B32-5dpf-05-unsorted-nac/sub-Temp-pref-F32-B32-5dpf-05-unsorted-nac_ses-20230711T140600_behavior.nwb
  242. schemaKey: Asset
  243. schemaVersion: 0.6.4
  244. variableMeasured:
  245. - schemaKey: PropertyValue
  246. value: CompassDirection
  247. - schemaKey: PropertyValue
  248. value: BehavioralTimeSeries
  249. - schemaKey: PropertyValue
  250. value: Position
  251. - schemaKey: PropertyValue
  252. value: SpatialSeries
  253. - schemaKey: PropertyValue
  254. value: ProcessingModule
  255. wasAttributedTo:
  256. - age:
  257. schemaKey: PropertyValue
  258. unitText: ISO-8601 duration
  259. value: P5DT50760S
  260. valueReference:
  261. schemaKey: PropertyValue
  262. value: dandi:BirthReference
  263. identifier: Temp_pref_F32_B32_5dpf_05_unsorted_nac
  264. schemaKey: Participant
  265. sex:
  266. name: Unknown
  267. schemaKey: SexType
  268. species:
  269. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  270. name: Danio rerio - Zebra fish
  271. schemaKey: SpeciesType
  272. wasGeneratedBy:
  273. - description: Hot Avoidance behavior
  274. name: Acquisition session
  275. schemaKey: Session
  276. startDate: '2023-07-11T14:06:00-04:00'
  277. - description: Metadata generated by DANDI cli
  278. endDate: '2023-11-11T11:08:49.911653-05:00'
  279. id: urn:uuid:c78182fb-16dc-4f93-9468-426ff3727e15
  280. name: Metadata generation
  281. schemaKey: Activity
  282. startDate: '2023-11-11T11:08:49.901656-05:00'
  283. wasAssociatedWith:
  284. - identifier: RRID:SCR_019009
  285. name: DANDI Command Line Interface
  286. schemaKey: Software
  287. url: https://github.com/dandi/dandi-cli
  288. version: 0.58.0
  289. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  290. access:
  291. - schemaKey: AccessRequirements
  292. status: dandi:EmbargoedAccess
  293. approach:
  294. - name: behavioral approach
  295. schemaKey: ApproachType
  296. blobDateModified: '2023-11-10T11:54:32.620000-05:00'
  297. contentSize: 9628253
  298. contentUrl:
  299. - https://api.dandiarchive.org/api/assets/853b7a4d-5be3-4517-a84c-128d0d06bddf/download/
  300. - https://dandiarchive.s3.amazonaws.com/blobs/6c7/9ed/6c79edca-3109-4fb8-ba60-77a5bc9ef3e3
  301. dateModified: '2023-11-11T11:08:49.971650-05:00'
  302. digest:
  303. dandi:dandi-etag: e9921832f62a488c3e591b69ccc39e34-1
  304. dandi:sha2-256: 62ec820927d5328b8dacf8e680ed0b8145b25e2a652c28a39ee7eb5b10a1dd37
  305. encodingFormat: application/x-nwb
  306. id: dandiasset:853b7a4d-5be3-4517-a84c-128d0d06bddf
  307. identifier: 853b7a4d-5be3-4517-a84c-128d0d06bddf
  308. measurementTechnique:
  309. - name: analytical technique
  310. schemaKey: MeasurementTechniqueType
  311. - name: behavioral technique
  312. schemaKey: MeasurementTechniqueType
  313. path: sub-Temp-pref-F32-B32-5dpf-04-unsorted-nac/sub-Temp-pref-F32-B32-5dpf-04-unsorted-nac_ses-20230711T133200_behavior.nwb
  314. schemaKey: Asset
  315. schemaVersion: 0.6.4
  316. variableMeasured:
  317. - schemaKey: PropertyValue
  318. value: CompassDirection
  319. - schemaKey: PropertyValue
  320. value: BehavioralTimeSeries
  321. - schemaKey: PropertyValue
  322. value: Position
  323. - schemaKey: PropertyValue
  324. value: SpatialSeries
  325. - schemaKey: PropertyValue
  326. value: ProcessingModule
  327. wasAttributedTo:
  328. - age:
  329. schemaKey: PropertyValue
  330. unitText: ISO-8601 duration
  331. value: P5DT48720S
  332. valueReference:
  333. schemaKey: PropertyValue
  334. value: dandi:BirthReference
  335. identifier: Temp_pref_F32_B32_5dpf_04_unsorted_nac
  336. schemaKey: Participant
  337. sex:
  338. name: Unknown
  339. schemaKey: SexType
  340. species:
  341. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  342. name: Danio rerio - Zebra fish
  343. schemaKey: SpeciesType
  344. wasGeneratedBy:
  345. - description: Hot Avoidance behavior
  346. name: Acquisition session
  347. schemaKey: Session
  348. startDate: '2023-07-11T13:32:00-04:00'
  349. - description: Metadata generated by DANDI cli
  350. endDate: '2023-11-11T11:08:49.971650-05:00'
  351. id: urn:uuid:f722680e-77d0-45fd-8858-fd768cdee61f
  352. name: Metadata generation
  353. schemaKey: Activity
  354. startDate: '2023-11-11T11:08:49.971650-05:00'
  355. wasAssociatedWith:
  356. - identifier: RRID:SCR_019009
  357. name: DANDI Command Line Interface
  358. schemaKey: Software
  359. url: https://github.com/dandi/dandi-cli
  360. version: 0.58.0
  361. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  362. access:
  363. - schemaKey: AccessRequirements
  364. status: dandi:EmbargoedAccess
  365. approach:
  366. - name: behavioral approach
  367. schemaKey: ApproachType
  368. blobDateModified: '2023-11-10T11:54:39.610000-05:00'
  369. contentSize: 9048627
  370. contentUrl:
  371. - https://api.dandiarchive.org/api/assets/df4738f7-6814-4557-8e8e-ea5b0edb5e2c/download/
  372. - https://dandiarchive.s3.amazonaws.com/blobs/d65/a69/d65a699b-6465-4f79-8d69-c411e99a16be
  373. dateModified: '2023-11-11T11:08:53.214618-05:00'
  374. digest:
  375. dandi:dandi-etag: f7948cf8e4eab595f8d957b090b8517d-1
  376. dandi:sha2-256: 6c116e37e5daa50a18bfd18457ae1fd177dc380af35aa20e74ef05cadc30428a
  377. encodingFormat: application/x-nwb
  378. id: dandiasset:df4738f7-6814-4557-8e8e-ea5b0edb5e2c
  379. identifier: df4738f7-6814-4557-8e8e-ea5b0edb5e2c
  380. measurementTechnique:
  381. - name: analytical technique
  382. schemaKey: MeasurementTechniqueType
  383. - name: behavioral technique
  384. schemaKey: MeasurementTechniqueType
  385. path: sub-Temp-pref-F32-B32-5dpf-06-unsorted-nac/sub-Temp-pref-F32-B32-5dpf-06-unsorted-nac_ses-20230711T143800_behavior.nwb
  386. schemaKey: Asset
  387. schemaVersion: 0.6.4
  388. variableMeasured:
  389. - schemaKey: PropertyValue
  390. value: CompassDirection
  391. - schemaKey: PropertyValue
  392. value: BehavioralTimeSeries
  393. - schemaKey: PropertyValue
  394. value: Position
  395. - schemaKey: PropertyValue
  396. value: SpatialSeries
  397. - schemaKey: PropertyValue
  398. value: ProcessingModule
  399. wasAttributedTo:
  400. - age:
  401. schemaKey: PropertyValue
  402. unitText: ISO-8601 duration
  403. value: P5DT52680S
  404. valueReference:
  405. schemaKey: PropertyValue
  406. value: dandi:BirthReference
  407. identifier: Temp_pref_F32_B32_5dpf_06_unsorted_nac
  408. schemaKey: Participant
  409. sex:
  410. name: Unknown
  411. schemaKey: SexType
  412. species:
  413. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  414. name: Danio rerio - Zebra fish
  415. schemaKey: SpeciesType
  416. wasGeneratedBy:
  417. - description: Hot Avoidance behavior
  418. name: Acquisition session
  419. schemaKey: Session
  420. startDate: '2023-07-11T14:38:00-04:00'
  421. - description: Metadata generated by DANDI cli
  422. endDate: '2023-11-11T11:08:53.214618-05:00'
  423. id: urn:uuid:bf4dd1de-613a-4165-b177-a635e5c2de80
  424. name: Metadata generation
  425. schemaKey: Activity
  426. startDate: '2023-11-11T11:08:53.164617-05:00'
  427. wasAssociatedWith:
  428. - identifier: RRID:SCR_019009
  429. name: DANDI Command Line Interface
  430. schemaKey: Software
  431. url: https://github.com/dandi/dandi-cli
  432. version: 0.58.0
  433. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  434. access:
  435. - schemaKey: AccessRequirements
  436. status: dandi:EmbargoedAccess
  437. approach:
  438. - name: behavioral approach
  439. schemaKey: ApproachType
  440. blobDateModified: '2023-11-10T11:54:46.590000-05:00'
  441. contentSize: 9677271
  442. contentUrl:
  443. - https://api.dandiarchive.org/api/assets/7d77ca2e-6356-475e-bff5-91ef7835b3ec/download/
  444. - https://dandiarchive.s3.amazonaws.com/blobs/bfb/7d5/bfb7d567-cccc-4a11-9407-ef48ba0836af
  445. dateModified: '2023-11-11T11:08:53.614619-05:00'
  446. digest:
  447. dandi:dandi-etag: 6f3207bb3bec69eff9fbd3d7aa746edd-1
  448. dandi:sha2-256: 5cbcccbc69f3d2b7b655fcffe92843b55cebc6947bf2f8c4229d815f0c4b7217
  449. encodingFormat: application/x-nwb
  450. id: dandiasset:7d77ca2e-6356-475e-bff5-91ef7835b3ec
  451. identifier: 7d77ca2e-6356-475e-bff5-91ef7835b3ec
  452. measurementTechnique:
  453. - name: analytical technique
  454. schemaKey: MeasurementTechniqueType
  455. - name: behavioral technique
  456. schemaKey: MeasurementTechniqueType
  457. path: sub-Temp-pref-F32-B32-5dpf-08-unsorted-nac/sub-Temp-pref-F32-B32-5dpf-08-unsorted-nac_ses-20230711T154400_behavior.nwb
  458. schemaKey: Asset
  459. schemaVersion: 0.6.4
  460. variableMeasured:
  461. - schemaKey: PropertyValue
  462. value: CompassDirection
  463. - schemaKey: PropertyValue
  464. value: BehavioralTimeSeries
  465. - schemaKey: PropertyValue
  466. value: Position
  467. - schemaKey: PropertyValue
  468. value: SpatialSeries
  469. - schemaKey: PropertyValue
  470. value: ProcessingModule
  471. wasAttributedTo:
  472. - age:
  473. schemaKey: PropertyValue
  474. unitText: ISO-8601 duration
  475. value: P5DT56640S
  476. valueReference:
  477. schemaKey: PropertyValue
  478. value: dandi:BirthReference
  479. identifier: Temp_pref_F32_B32_5dpf_08_unsorted_nac
  480. schemaKey: Participant
  481. sex:
  482. name: Unknown
  483. schemaKey: SexType
  484. species:
  485. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  486. name: Danio rerio - Zebra fish
  487. schemaKey: SpeciesType
  488. wasGeneratedBy:
  489. - description: Hot Avoidance behavior
  490. name: Acquisition session
  491. schemaKey: Session
  492. startDate: '2023-07-11T15:44:00-04:00'
  493. - description: Metadata generated by DANDI cli
  494. endDate: '2023-11-11T11:08:53.614619-05:00'
  495. id: urn:uuid:da3da23b-254c-4e81-a960-4f8b20070ee0
  496. name: Metadata generation
  497. schemaKey: Activity
  498. startDate: '2023-11-11T11:08:53.514433-05:00'
  499. wasAssociatedWith:
  500. - identifier: RRID:SCR_019009
  501. name: DANDI Command Line Interface
  502. schemaKey: Software
  503. url: https://github.com/dandi/dandi-cli
  504. version: 0.58.0
  505. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  506. access:
  507. - schemaKey: AccessRequirements
  508. status: dandi:EmbargoedAccess
  509. approach:
  510. - name: behavioral approach
  511. schemaKey: ApproachType
  512. blobDateModified: '2023-11-10T11:54:43.040000-05:00'
  513. contentSize: 9661769
  514. contentUrl:
  515. - https://api.dandiarchive.org/api/assets/b111f6f9-5b3f-4ad2-a66f-32b3884f9b28/download/
  516. - https://dandiarchive.s3.amazonaws.com/blobs/d3b/1b0/d3b1b031-fffa-4b8a-bd35-3b939842b91e
  517. dateModified: '2023-11-11T11:08:53.254615-05:00'
  518. digest:
  519. dandi:dandi-etag: 77e5c2a4aeeced7b2df42aec2fa9834f-1
  520. dandi:sha2-256: 7aaf2df448a1f94fa1252fc21ec4018dbbb0efaf1e8446dac94242bdd3942668
  521. encodingFormat: application/x-nwb
  522. id: dandiasset:b111f6f9-5b3f-4ad2-a66f-32b3884f9b28
  523. identifier: b111f6f9-5b3f-4ad2-a66f-32b3884f9b28
  524. measurementTechnique:
  525. - name: analytical technique
  526. schemaKey: MeasurementTechniqueType
  527. - name: behavioral technique
  528. schemaKey: MeasurementTechniqueType
  529. path: sub-Temp-pref-F32-B32-5dpf-07-unsorted-nac/sub-Temp-pref-F32-B32-5dpf-07-unsorted-nac_ses-20230711T151200_behavior.nwb
  530. schemaKey: Asset
  531. schemaVersion: 0.6.4
  532. variableMeasured:
  533. - schemaKey: PropertyValue
  534. value: CompassDirection
  535. - schemaKey: PropertyValue
  536. value: BehavioralTimeSeries
  537. - schemaKey: PropertyValue
  538. value: Position
  539. - schemaKey: PropertyValue
  540. value: SpatialSeries
  541. - schemaKey: PropertyValue
  542. value: ProcessingModule
  543. wasAttributedTo:
  544. - age:
  545. schemaKey: PropertyValue
  546. unitText: ISO-8601 duration
  547. value: P5DT54720S
  548. valueReference:
  549. schemaKey: PropertyValue
  550. value: dandi:BirthReference
  551. identifier: Temp_pref_F32_B32_5dpf_07_unsorted_nac
  552. schemaKey: Participant
  553. sex:
  554. name: Unknown
  555. schemaKey: SexType
  556. species:
  557. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  558. name: Danio rerio - Zebra fish
  559. schemaKey: SpeciesType
  560. wasGeneratedBy:
  561. - description: Hot Avoidance behavior
  562. name: Acquisition session
  563. schemaKey: Session
  564. startDate: '2023-07-11T15:12:00-04:00'
  565. - description: Metadata generated by DANDI cli
  566. endDate: '2023-11-11T11:08:53.254615-05:00'
  567. id: urn:uuid:e6c392b2-c676-466f-84e3-86f3e3aba489
  568. name: Metadata generation
  569. schemaKey: Activity
  570. startDate: '2023-11-11T11:08:53.214618-05:00'
  571. wasAssociatedWith:
  572. - identifier: RRID:SCR_019009
  573. name: DANDI Command Line Interface
  574. schemaKey: Software
  575. url: https://github.com/dandi/dandi-cli
  576. version: 0.58.0
  577. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  578. access:
  579. - schemaKey: AccessRequirements
  580. status: dandi:EmbargoedAccess
  581. approach:
  582. - name: behavioral approach
  583. schemaKey: ApproachType
  584. blobDateModified: '2023-11-10T11:54:53.730000-05:00'
  585. contentSize: 9568058
  586. contentUrl:
  587. - https://api.dandiarchive.org/api/assets/d3451647-106f-4e2c-8d91-d9a647051264/download/
  588. - https://dandiarchive.s3.amazonaws.com/blobs/9af/e0a/9afe0af6-ba9c-4cda-a50a-91eabd133700
  589. dateModified: '2023-11-11T11:08:54.769683-05:00'
  590. digest:
  591. dandi:dandi-etag: 5800d8cfdd9ca39fee832ede85dfab96-1
  592. dandi:sha2-256: c8d70c32fda204bccb4c380e8b3ca8eed23b3ddc6730a3ee34378b61143c101d
  593. encodingFormat: application/x-nwb
  594. id: dandiasset:d3451647-106f-4e2c-8d91-d9a647051264
  595. identifier: d3451647-106f-4e2c-8d91-d9a647051264
  596. measurementTechnique:
  597. - name: analytical technique
  598. schemaKey: MeasurementTechniqueType
  599. - name: behavioral technique
  600. schemaKey: MeasurementTechniqueType
  601. path: sub-Temp-pref-F32-B32-5dpf-10-unsorted-nac/sub-Temp-pref-F32-B32-5dpf-10-unsorted-nac_ses-20230711T165300_behavior.nwb
  602. schemaKey: Asset
  603. schemaVersion: 0.6.4
  604. variableMeasured:
  605. - schemaKey: PropertyValue
  606. value: CompassDirection
  607. - schemaKey: PropertyValue
  608. value: BehavioralTimeSeries
  609. - schemaKey: PropertyValue
  610. value: Position
  611. - schemaKey: PropertyValue
  612. value: SpatialSeries
  613. - schemaKey: PropertyValue
  614. value: ProcessingModule
  615. wasAttributedTo:
  616. - age:
  617. schemaKey: PropertyValue
  618. unitText: ISO-8601 duration
  619. value: P5DT60780S
  620. valueReference:
  621. schemaKey: PropertyValue
  622. value: dandi:BirthReference
  623. identifier: Temp_pref_F32_B32_5dpf_10_unsorted_nac
  624. schemaKey: Participant
  625. sex:
  626. name: Unknown
  627. schemaKey: SexType
  628. species:
  629. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  630. name: Danio rerio - Zebra fish
  631. schemaKey: SpeciesType
  632. wasGeneratedBy:
  633. - description: Hot Avoidance behavior
  634. name: Acquisition session
  635. schemaKey: Session
  636. startDate: '2023-07-11T16:53:00-04:00'
  637. - description: Metadata generated by DANDI cli
  638. endDate: '2023-11-11T11:08:54.769683-05:00'
  639. id: urn:uuid:74cf9d34-9f56-48f3-a285-8de77c42c5e8
  640. name: Metadata generation
  641. schemaKey: Activity
  642. startDate: '2023-11-11T11:08:54.714483-05:00'
  643. wasAssociatedWith:
  644. - identifier: RRID:SCR_019009
  645. name: DANDI Command Line Interface
  646. schemaKey: Software
  647. url: https://github.com/dandi/dandi-cli
  648. version: 0.58.0
  649. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  650. access:
  651. - schemaKey: AccessRequirements
  652. status: dandi:EmbargoedAccess
  653. approach:
  654. - name: behavioral approach
  655. schemaKey: ApproachType
  656. blobDateModified: '2023-11-10T11:54:50.080000-05:00'
  657. contentSize: 9781498
  658. contentUrl:
  659. - https://api.dandiarchive.org/api/assets/bbd1bcbc-303c-453a-a8c3-244332be0850/download/
  660. - https://dandiarchive.s3.amazonaws.com/blobs/8aa/459/8aa45932-78e2-41b7-8fc6-b40c4ca9ba35
  661. dateModified: '2023-11-11T11:08:54.729326-05:00'
  662. digest:
  663. dandi:dandi-etag: c699f1985b7cb00d21eb20783a38734c-1
  664. dandi:sha2-256: 3e16bebacba6120fe343f70e0e25c2c5b6480af1bc42d3f5f3a89a6656a0a728
  665. encodingFormat: application/x-nwb
  666. id: dandiasset:bbd1bcbc-303c-453a-a8c3-244332be0850
  667. identifier: bbd1bcbc-303c-453a-a8c3-244332be0850
  668. measurementTechnique:
  669. - name: analytical technique
  670. schemaKey: MeasurementTechniqueType
  671. - name: behavioral technique
  672. schemaKey: MeasurementTechniqueType
  673. path: sub-Temp-pref-F32-B32-5dpf-09-unsorted-nac/sub-Temp-pref-F32-B32-5dpf-09-unsorted-nac_ses-20230711T161900_behavior.nwb
  674. schemaKey: Asset
  675. schemaVersion: 0.6.4
  676. variableMeasured:
  677. - schemaKey: PropertyValue
  678. value: CompassDirection
  679. - schemaKey: PropertyValue
  680. value: BehavioralTimeSeries
  681. - schemaKey: PropertyValue
  682. value: Position
  683. - schemaKey: PropertyValue
  684. value: SpatialSeries
  685. - schemaKey: PropertyValue
  686. value: ProcessingModule
  687. wasAttributedTo:
  688. - age:
  689. schemaKey: PropertyValue
  690. unitText: ISO-8601 duration
  691. value: P5DT58740S
  692. valueReference:
  693. schemaKey: PropertyValue
  694. value: dandi:BirthReference
  695. identifier: Temp_pref_F32_B32_5dpf_09_unsorted_nac
  696. schemaKey: Participant
  697. sex:
  698. name: Unknown
  699. schemaKey: SexType
  700. species:
  701. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  702. name: Danio rerio - Zebra fish
  703. schemaKey: SpeciesType
  704. wasGeneratedBy:
  705. - description: Hot Avoidance behavior
  706. name: Acquisition session
  707. schemaKey: Session
  708. startDate: '2023-07-11T16:19:00-04:00'
  709. - description: Metadata generated by DANDI cli
  710. endDate: '2023-11-11T11:08:54.729326-05:00'
  711. id: urn:uuid:4f2603a4-b7da-47e4-adb2-4118de57f194
  712. name: Metadata generation
  713. schemaKey: Activity
  714. startDate: '2023-11-11T11:08:54.694137-05:00'
  715. wasAssociatedWith:
  716. - identifier: RRID:SCR_019009
  717. name: DANDI Command Line Interface
  718. schemaKey: Software
  719. url: https://github.com/dandi/dandi-cli
  720. version: 0.58.0
  721. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  722. access:
  723. - schemaKey: AccessRequirements
  724. status: dandi:EmbargoedAccess
  725. approach:
  726. - name: behavioral approach
  727. schemaKey: ApproachType
  728. blobDateModified: '2023-11-10T11:55:04.330000-05:00'
  729. contentSize: 9595596
  730. contentUrl:
  731. - https://api.dandiarchive.org/api/assets/08bebc38-5d6d-4394-a068-54902816947d/download/
  732. - https://dandiarchive.s3.amazonaws.com/blobs/e84/9f5/e849f5ff-d1ac-400e-bdce-65bda2f0fc04
  733. dateModified: '2023-11-11T11:08:56.765791-05:00'
  734. digest:
  735. dandi:dandi-etag: 74b8b021e72b63b0e8ec1c8f62e0d5e3-1
  736. dandi:sha2-256: ee2e67a95ae742709f9f55942c2f46a7a9816a3c7fe15cc23986b6fd55082357
  737. encodingFormat: application/x-nwb
  738. id: dandiasset:08bebc38-5d6d-4394-a068-54902816947d
  739. identifier: 08bebc38-5d6d-4394-a068-54902816947d
  740. measurementTechnique:
  741. - name: analytical technique
  742. schemaKey: MeasurementTechniqueType
  743. - name: behavioral technique
  744. schemaKey: MeasurementTechniqueType
  745. path: sub-Temp-pref-F32-B32-6dpf-13-unsorted-nac/sub-Temp-pref-F32-B32-6dpf-13-unsorted-nac_ses-20230712T112100_behavior.nwb
  746. schemaKey: Asset
  747. schemaVersion: 0.6.4
  748. variableMeasured:
  749. - schemaKey: PropertyValue
  750. value: CompassDirection
  751. - schemaKey: PropertyValue
  752. value: BehavioralTimeSeries
  753. - schemaKey: PropertyValue
  754. value: Position
  755. - schemaKey: PropertyValue
  756. value: SpatialSeries
  757. - schemaKey: PropertyValue
  758. value: ProcessingModule
  759. wasAttributedTo:
  760. - age:
  761. schemaKey: PropertyValue
  762. unitText: ISO-8601 duration
  763. value: P6DT40860S
  764. valueReference:
  765. schemaKey: PropertyValue
  766. value: dandi:BirthReference
  767. identifier: Temp_pref_F32_B32_6dpf_13_unsorted_nac
  768. schemaKey: Participant
  769. sex:
  770. name: Unknown
  771. schemaKey: SexType
  772. species:
  773. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  774. name: Danio rerio - Zebra fish
  775. schemaKey: SpeciesType
  776. wasGeneratedBy:
  777. - description: Hot Avoidance behavior
  778. name: Acquisition session
  779. schemaKey: Session
  780. startDate: '2023-07-12T11:21:00-04:00'
  781. - description: Metadata generated by DANDI cli
  782. endDate: '2023-11-11T11:08:56.765791-05:00'
  783. id: urn:uuid:b8a34d64-7548-488e-9937-543762e71608
  784. name: Metadata generation
  785. schemaKey: Activity
  786. startDate: '2023-11-11T11:08:56.725437-05:00'
  787. wasAssociatedWith:
  788. - identifier: RRID:SCR_019009
  789. name: DANDI Command Line Interface
  790. schemaKey: Software
  791. url: https://github.com/dandi/dandi-cli
  792. version: 0.58.0
  793. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  794. access:
  795. - schemaKey: AccessRequirements
  796. status: dandi:EmbargoedAccess
  797. approach:
  798. - name: behavioral approach
  799. schemaKey: ApproachType
  800. blobDateModified: '2023-11-10T11:55:00.750000-05:00'
  801. contentSize: 9660903
  802. contentUrl:
  803. - https://api.dandiarchive.org/api/assets/56ec7ac6-bc78-402b-ae00-275c0d34f15a/download/
  804. - https://dandiarchive.s3.amazonaws.com/blobs/6f5/9fd/6f59fd89-a663-406b-84fe-cdde58343beb
  805. dateModified: '2023-11-11T11:08:56.795787-05:00'
  806. digest:
  807. dandi:dandi-etag: c4dd36f2494d2653fe80218e54fcc85f-1
  808. dandi:sha2-256: c9a1e3e7c09eed9256ebb56818910da1be844bdce90a758fa448e5f0862a5ed6
  809. encodingFormat: application/x-nwb
  810. id: dandiasset:56ec7ac6-bc78-402b-ae00-275c0d34f15a
  811. identifier: 56ec7ac6-bc78-402b-ae00-275c0d34f15a
  812. measurementTechnique:
  813. - name: analytical technique
  814. schemaKey: MeasurementTechniqueType
  815. - name: behavioral technique
  816. schemaKey: MeasurementTechniqueType
  817. path: sub-Temp-pref-F32-B32-6dpf-12-unsorted-nac/sub-Temp-pref-F32-B32-6dpf-12-unsorted-nac_ses-20230712T104500_behavior.nwb
  818. schemaKey: Asset
  819. schemaVersion: 0.6.4
  820. variableMeasured:
  821. - schemaKey: PropertyValue
  822. value: CompassDirection
  823. - schemaKey: PropertyValue
  824. value: BehavioralTimeSeries
  825. - schemaKey: PropertyValue
  826. value: Position
  827. - schemaKey: PropertyValue
  828. value: SpatialSeries
  829. - schemaKey: PropertyValue
  830. value: ProcessingModule
  831. wasAttributedTo:
  832. - age:
  833. schemaKey: PropertyValue
  834. unitText: ISO-8601 duration
  835. value: P6DT38700S
  836. valueReference:
  837. schemaKey: PropertyValue
  838. value: dandi:BirthReference
  839. identifier: Temp_pref_F32_B32_6dpf_12_unsorted_nac
  840. schemaKey: Participant
  841. sex:
  842. name: Unknown
  843. schemaKey: SexType
  844. species:
  845. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  846. name: Danio rerio - Zebra fish
  847. schemaKey: SpeciesType
  848. wasGeneratedBy:
  849. - description: Hot Avoidance behavior
  850. name: Acquisition session
  851. schemaKey: Session
  852. startDate: '2023-07-12T10:45:00-04:00'
  853. - description: Metadata generated by DANDI cli
  854. endDate: '2023-11-11T11:08:56.795787-05:00'
  855. id: urn:uuid:08a6cb3a-b8f0-4a98-982f-98c3182251a8
  856. name: Metadata generation
  857. schemaKey: Activity
  858. startDate: '2023-11-11T11:08:56.755791-05:00'
  859. wasAssociatedWith:
  860. - identifier: RRID:SCR_019009
  861. name: DANDI Command Line Interface
  862. schemaKey: Software
  863. url: https://github.com/dandi/dandi-cli
  864. version: 0.58.0
  865. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  866. access:
  867. - schemaKey: AccessRequirements
  868. status: dandi:EmbargoedAccess
  869. approach:
  870. - name: behavioral approach
  871. schemaKey: ApproachType
  872. blobDateModified: '2023-11-10T11:54:57.190000-05:00'
  873. contentSize: 9448314
  874. contentUrl:
  875. - https://api.dandiarchive.org/api/assets/8ade2b16-d8a6-4272-aad4-48d755607c6e/download/
  876. - https://dandiarchive.s3.amazonaws.com/blobs/701/635/70163500-e4fd-4a6e-994f-f1edcf1413fa
  877. dateModified: '2023-11-11T11:08:56.755791-05:00'
  878. digest:
  879. dandi:dandi-etag: 0ec8ea2598a64a163068c1a955d9836c-1
  880. dandi:sha2-256: d92dee6224b618db9e3bbe244d6f82ba309f1eb08dd018db60e1b29c2ebd39d5
  881. encodingFormat: application/x-nwb
  882. id: dandiasset:8ade2b16-d8a6-4272-aad4-48d755607c6e
  883. identifier: 8ade2b16-d8a6-4272-aad4-48d755607c6e
  884. measurementTechnique:
  885. - name: analytical technique
  886. schemaKey: MeasurementTechniqueType
  887. - name: behavioral technique
  888. schemaKey: MeasurementTechniqueType
  889. path: sub-Temp-pref-F32-B32-6dpf-11-unsorted-nac/sub-Temp-pref-F32-B32-6dpf-11-unsorted-nac_ses-20230712T101300_behavior.nwb
  890. schemaKey: Asset
  891. schemaVersion: 0.6.4
  892. variableMeasured:
  893. - schemaKey: PropertyValue
  894. value: CompassDirection
  895. - schemaKey: PropertyValue
  896. value: BehavioralTimeSeries
  897. - schemaKey: PropertyValue
  898. value: Position
  899. - schemaKey: PropertyValue
  900. value: SpatialSeries
  901. - schemaKey: PropertyValue
  902. value: ProcessingModule
  903. wasAttributedTo:
  904. - age:
  905. schemaKey: PropertyValue
  906. unitText: ISO-8601 duration
  907. value: P6DT36780S
  908. valueReference:
  909. schemaKey: PropertyValue
  910. value: dandi:BirthReference
  911. identifier: Temp_pref_F32_B32_6dpf_11_unsorted_nac
  912. schemaKey: Participant
  913. sex:
  914. name: Unknown
  915. schemaKey: SexType
  916. species:
  917. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  918. name: Danio rerio - Zebra fish
  919. schemaKey: SpeciesType
  920. wasGeneratedBy:
  921. - description: Hot Avoidance behavior
  922. name: Acquisition session
  923. schemaKey: Session
  924. startDate: '2023-07-12T10:13:00-04:00'
  925. - description: Metadata generated by DANDI cli
  926. endDate: '2023-11-11T11:08:56.755791-05:00'
  927. id: urn:uuid:a1b73405-b4ec-44f4-9237-7622788a0f32
  928. name: Metadata generation
  929. schemaKey: Activity
  930. startDate: '2023-11-11T11:08:56.699780-05:00'
  931. wasAssociatedWith:
  932. - identifier: RRID:SCR_019009
  933. name: DANDI Command Line Interface
  934. schemaKey: Software
  935. url: https://github.com/dandi/dandi-cli
  936. version: 0.58.0
  937. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  938. access:
  939. - schemaKey: AccessRequirements
  940. status: dandi:EmbargoedAccess
  941. approach:
  942. - name: behavioral approach
  943. schemaKey: ApproachType
  944. blobDateModified: '2023-11-10T11:55:11.470000-05:00'
  945. contentSize: 9513473
  946. contentUrl:
  947. - https://api.dandiarchive.org/api/assets/4a2f072c-6a5d-4e50-b8ef-b5a8d2dbe8a3/download/
  948. - https://dandiarchive.s3.amazonaws.com/blobs/d8c/142/d8c142f5-1c95-44f1-a1a2-f6abd963e8d5
  949. dateModified: '2023-11-11T11:08:57.625441-05:00'
  950. digest:
  951. dandi:dandi-etag: 84f025dae2797ed28fc4d926b8fa2398-1
  952. dandi:sha2-256: ce87af76b0fffe7ee2354165b01955de7b3859ce2046790c1f8116654f5d7fc8
  953. encodingFormat: application/x-nwb
  954. id: dandiasset:4a2f072c-6a5d-4e50-b8ef-b5a8d2dbe8a3
  955. identifier: 4a2f072c-6a5d-4e50-b8ef-b5a8d2dbe8a3
  956. measurementTechnique:
  957. - name: analytical technique
  958. schemaKey: MeasurementTechniqueType
  959. - name: behavioral technique
  960. schemaKey: MeasurementTechniqueType
  961. path: sub-Temp-pref-F32-B32-6dpf-15-unsorted-nac/sub-Temp-pref-F32-B32-6dpf-15-unsorted-nac_ses-20230712T122600_behavior.nwb
  962. schemaKey: Asset
  963. schemaVersion: 0.6.4
  964. variableMeasured:
  965. - schemaKey: PropertyValue
  966. value: CompassDirection
  967. - schemaKey: PropertyValue
  968. value: BehavioralTimeSeries
  969. - schemaKey: PropertyValue
  970. value: Position
  971. - schemaKey: PropertyValue
  972. value: SpatialSeries
  973. - schemaKey: PropertyValue
  974. value: ProcessingModule
  975. wasAttributedTo:
  976. - age:
  977. schemaKey: PropertyValue
  978. unitText: ISO-8601 duration
  979. value: P6DT44760S
  980. valueReference:
  981. schemaKey: PropertyValue
  982. value: dandi:BirthReference
  983. identifier: Temp_pref_F32_B32_6dpf_15_unsorted_nac
  984. schemaKey: Participant
  985. sex:
  986. name: Unknown
  987. schemaKey: SexType
  988. species:
  989. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  990. name: Danio rerio - Zebra fish
  991. schemaKey: SpeciesType
  992. wasGeneratedBy:
  993. - description: Hot Avoidance behavior
  994. name: Acquisition session
  995. schemaKey: Session
  996. startDate: '2023-07-12T12:26:00-04:00'
  997. - description: Metadata generated by DANDI cli
  998. endDate: '2023-11-11T11:08:57.625441-05:00'
  999. id: urn:uuid:2ffae215-4ed2-4aff-9442-95722695d686
  1000. name: Metadata generation
  1001. schemaKey: Activity
  1002. startDate: '2023-11-11T11:08:57.625441-05:00'
  1003. wasAssociatedWith:
  1004. - identifier: RRID:SCR_019009
  1005. name: DANDI Command Line Interface
  1006. schemaKey: Software
  1007. url: https://github.com/dandi/dandi-cli
  1008. version: 0.58.0
  1009. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1010. access:
  1011. - schemaKey: AccessRequirements
  1012. status: dandi:EmbargoedAccess
  1013. approach:
  1014. - name: behavioral approach
  1015. schemaKey: ApproachType
  1016. blobDateModified: '2023-11-10T11:55:07.880000-05:00'
  1017. contentSize: 9544780
  1018. contentUrl:
  1019. - https://api.dandiarchive.org/api/assets/44b83dec-92c8-4a76-8774-254cbb11469f/download/
  1020. - https://dandiarchive.s3.amazonaws.com/blobs/9b9/b0e/9b9b0edc-b886-4c82-8d6c-d3eac0004fa3
  1021. dateModified: '2023-11-11T11:08:57.625441-05:00'
  1022. digest:
  1023. dandi:dandi-etag: 4144d927071a6fe3e5974095c9537a75-1
  1024. dandi:sha2-256: 4f2d4aeaadccb8eb573a62d38c2923d67be21f5c73d225059737e577297964ae
  1025. encodingFormat: application/x-nwb
  1026. id: dandiasset:44b83dec-92c8-4a76-8774-254cbb11469f
  1027. identifier: 44b83dec-92c8-4a76-8774-254cbb11469f
  1028. measurementTechnique:
  1029. - name: analytical technique
  1030. schemaKey: MeasurementTechniqueType
  1031. - name: behavioral technique
  1032. schemaKey: MeasurementTechniqueType
  1033. path: sub-Temp-pref-F32-B32-6dpf-14-unsorted-nac/sub-Temp-pref-F32-B32-6dpf-14-unsorted-nac_ses-20230712T115300_behavior.nwb
  1034. schemaKey: Asset
  1035. schemaVersion: 0.6.4
  1036. variableMeasured:
  1037. - schemaKey: PropertyValue
  1038. value: CompassDirection
  1039. - schemaKey: PropertyValue
  1040. value: BehavioralTimeSeries
  1041. - schemaKey: PropertyValue
  1042. value: Position
  1043. - schemaKey: PropertyValue
  1044. value: SpatialSeries
  1045. - schemaKey: PropertyValue
  1046. value: ProcessingModule
  1047. wasAttributedTo:
  1048. - age:
  1049. schemaKey: PropertyValue
  1050. unitText: ISO-8601 duration
  1051. value: P6DT42780S
  1052. valueReference:
  1053. schemaKey: PropertyValue
  1054. value: dandi:BirthReference
  1055. identifier: Temp_pref_F32_B32_6dpf_14_unsorted_nac
  1056. schemaKey: Participant
  1057. sex:
  1058. name: Unknown
  1059. schemaKey: SexType
  1060. species:
  1061. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  1062. name: Danio rerio - Zebra fish
  1063. schemaKey: SpeciesType
  1064. wasGeneratedBy:
  1065. - description: Hot Avoidance behavior
  1066. name: Acquisition session
  1067. schemaKey: Session
  1068. startDate: '2023-07-12T11:53:00-04:00'
  1069. - description: Metadata generated by DANDI cli
  1070. endDate: '2023-11-11T11:08:57.625441-05:00'
  1071. id: urn:uuid:299f171f-ea33-48a8-934f-311a7423d24d
  1072. name: Metadata generation
  1073. schemaKey: Activity
  1074. startDate: '2023-11-11T11:08:57.595441-05:00'
  1075. wasAssociatedWith:
  1076. - identifier: RRID:SCR_019009
  1077. name: DANDI Command Line Interface
  1078. schemaKey: Software
  1079. url: https://github.com/dandi/dandi-cli
  1080. version: 0.58.0
  1081. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1082. access:
  1083. - schemaKey: AccessRequirements
  1084. status: dandi:EmbargoedAccess
  1085. approach:
  1086. - name: behavioral approach
  1087. schemaKey: ApproachType
  1088. blobDateModified: '2023-11-10T11:55:15.060000-05:00'
  1089. contentSize: 9563893
  1090. contentUrl:
  1091. - https://api.dandiarchive.org/api/assets/50ec99e9-292e-4f4a-a3b2-374784d00bd8/download/
  1092. - https://dandiarchive.s3.amazonaws.com/blobs/861/a23/861a23d4-4b27-4ddf-bfd6-48f757f88ca9
  1093. dateModified: '2023-11-11T11:08:59.691811-05:00'
  1094. digest:
  1095. dandi:dandi-etag: dd8bcddcc2147dd05d8a6d8bdbaea1ca-1
  1096. dandi:sha2-256: 656aae11d4c0549a906cc4b3e2d01bc4018c2b22d99b2686b50cf5933f9dd277
  1097. encodingFormat: application/x-nwb
  1098. id: dandiasset:50ec99e9-292e-4f4a-a3b2-374784d00bd8
  1099. identifier: 50ec99e9-292e-4f4a-a3b2-374784d00bd8
  1100. measurementTechnique:
  1101. - name: analytical technique
  1102. schemaKey: MeasurementTechniqueType
  1103. - name: behavioral technique
  1104. schemaKey: MeasurementTechniqueType
  1105. path: sub-Temp-pref-F32-B32-6dpf-16-unsorted-nac/sub-Temp-pref-F32-B32-6dpf-16-unsorted-nac_ses-20230712T125900_behavior.nwb
  1106. schemaKey: Asset
  1107. schemaVersion: 0.6.4
  1108. variableMeasured:
  1109. - schemaKey: PropertyValue
  1110. value: CompassDirection
  1111. - schemaKey: PropertyValue
  1112. value: BehavioralTimeSeries
  1113. - schemaKey: PropertyValue
  1114. value: Position
  1115. - schemaKey: PropertyValue
  1116. value: SpatialSeries
  1117. - schemaKey: PropertyValue
  1118. value: ProcessingModule
  1119. wasAttributedTo:
  1120. - age:
  1121. schemaKey: PropertyValue
  1122. unitText: ISO-8601 duration
  1123. value: P6DT46740S
  1124. valueReference:
  1125. schemaKey: PropertyValue
  1126. value: dandi:BirthReference
  1127. identifier: Temp_pref_F32_B32_6dpf_16_unsorted_nac
  1128. schemaKey: Participant
  1129. sex:
  1130. name: Unknown
  1131. schemaKey: SexType
  1132. species:
  1133. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  1134. name: Danio rerio - Zebra fish
  1135. schemaKey: SpeciesType
  1136. wasGeneratedBy:
  1137. - description: Hot Avoidance behavior
  1138. name: Acquisition session
  1139. schemaKey: Session
  1140. startDate: '2023-07-12T12:59:00-04:00'
  1141. - description: Metadata generated by DANDI cli
  1142. endDate: '2023-11-11T11:08:59.691811-05:00'
  1143. id: urn:uuid:e49121e9-0449-42b2-819b-435b3474781f
  1144. name: Metadata generation
  1145. schemaKey: Activity
  1146. startDate: '2023-11-11T11:08:59.682161-05:00'
  1147. wasAssociatedWith:
  1148. - identifier: RRID:SCR_019009
  1149. name: DANDI Command Line Interface
  1150. schemaKey: Software
  1151. url: https://github.com/dandi/dandi-cli
  1152. version: 0.58.0
  1153. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1154. access:
  1155. - schemaKey: AccessRequirements
  1156. status: dandi:EmbargoedAccess
  1157. approach:
  1158. - name: behavioral approach
  1159. schemaKey: ApproachType
  1160. blobDateModified: '2023-11-10T11:55:22.070000-05:00'
  1161. contentSize: 9644106
  1162. contentUrl:
  1163. - https://api.dandiarchive.org/api/assets/46aad1ad-ff18-4f3f-ad46-2d847cbce557/download/
  1164. - https://dandiarchive.s3.amazonaws.com/blobs/ca4/a12/ca4a1272-e949-4ca3-8460-1898a8ff9e4b
  1165. dateModified: '2023-11-11T11:09:00.081812-05:00'
  1166. digest:
  1167. dandi:dandi-etag: 5b2f0033d4fb38d39850caea67a45e0b-1
  1168. dandi:sha2-256: ff4ba21f087bd74bc62f5ea759ff90fff2bfb93e69ac7afa1c96732636870033
  1169. encodingFormat: application/x-nwb
  1170. id: dandiasset:46aad1ad-ff18-4f3f-ad46-2d847cbce557
  1171. identifier: 46aad1ad-ff18-4f3f-ad46-2d847cbce557
  1172. measurementTechnique:
  1173. - name: analytical technique
  1174. schemaKey: MeasurementTechniqueType
  1175. - name: behavioral technique
  1176. schemaKey: MeasurementTechniqueType
  1177. path: sub-Temp-pref-F32-B32-6dpf-18-unsorted-nac/sub-Temp-pref-F32-B32-6dpf-18-unsorted-nac_ses-20230712T142400_behavior.nwb
  1178. schemaKey: Asset
  1179. schemaVersion: 0.6.4
  1180. variableMeasured:
  1181. - schemaKey: PropertyValue
  1182. value: CompassDirection
  1183. - schemaKey: PropertyValue
  1184. value: BehavioralTimeSeries
  1185. - schemaKey: PropertyValue
  1186. value: Position
  1187. - schemaKey: PropertyValue
  1188. value: SpatialSeries
  1189. - schemaKey: PropertyValue
  1190. value: ProcessingModule
  1191. wasAttributedTo:
  1192. - age:
  1193. schemaKey: PropertyValue
  1194. unitText: ISO-8601 duration
  1195. value: P6DT51840S
  1196. valueReference:
  1197. schemaKey: PropertyValue
  1198. value: dandi:BirthReference
  1199. identifier: Temp_pref_F32_B32_6dpf_18_unsorted_nac
  1200. schemaKey: Participant
  1201. sex:
  1202. name: Unknown
  1203. schemaKey: SexType
  1204. species:
  1205. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  1206. name: Danio rerio - Zebra fish
  1207. schemaKey: SpeciesType
  1208. wasGeneratedBy:
  1209. - description: Hot Avoidance behavior
  1210. name: Acquisition session
  1211. schemaKey: Session
  1212. startDate: '2023-07-12T14:24:00-04:00'
  1213. - description: Metadata generated by DANDI cli
  1214. endDate: '2023-11-11T11:09:00.081812-05:00'
  1215. id: urn:uuid:77af5f89-4053-42c7-8ef9-928277c99e09
  1216. name: Metadata generation
  1217. schemaKey: Activity
  1218. startDate: '2023-11-11T11:09:00.041812-05:00'
  1219. wasAssociatedWith:
  1220. - identifier: RRID:SCR_019009
  1221. name: DANDI Command Line Interface
  1222. schemaKey: Software
  1223. url: https://github.com/dandi/dandi-cli
  1224. version: 0.58.0
  1225. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1226. access:
  1227. - schemaKey: AccessRequirements
  1228. status: dandi:EmbargoedAccess
  1229. approach:
  1230. - name: behavioral approach
  1231. schemaKey: ApproachType
  1232. blobDateModified: '2023-11-10T11:55:18.600000-05:00'
  1233. contentSize: 9559052
  1234. contentUrl:
  1235. - https://api.dandiarchive.org/api/assets/f22df184-ddec-40f9-8dfe-3bdac457ab1b/download/
  1236. - https://dandiarchive.s3.amazonaws.com/blobs/483/6d3/4836d39b-32b1-4247-80ff-f2dba92c7e58
  1237. dateModified: '2023-11-11T11:08:59.842161-05:00'
  1238. digest:
  1239. dandi:dandi-etag: 1be86e2c12f827f86649fb2596bfffee-1
  1240. dandi:sha2-256: 07365beb903424bd6b35615c5f5d8cff8b37b2c7979493d8a3a142a6e30cbf85
  1241. encodingFormat: application/x-nwb
  1242. id: dandiasset:f22df184-ddec-40f9-8dfe-3bdac457ab1b
  1243. identifier: f22df184-ddec-40f9-8dfe-3bdac457ab1b
  1244. measurementTechnique:
  1245. - name: analytical technique
  1246. schemaKey: MeasurementTechniqueType
  1247. - name: behavioral technique
  1248. schemaKey: MeasurementTechniqueType
  1249. path: sub-Temp-pref-F32-B32-6dpf-17-unsorted-nac/sub-Temp-pref-F32-B32-6dpf-17-unsorted-nac_ses-20230712T133000_behavior.nwb
  1250. schemaKey: Asset
  1251. schemaVersion: 0.6.4
  1252. variableMeasured:
  1253. - schemaKey: PropertyValue
  1254. value: CompassDirection
  1255. - schemaKey: PropertyValue
  1256. value: BehavioralTimeSeries
  1257. - schemaKey: PropertyValue
  1258. value: Position
  1259. - schemaKey: PropertyValue
  1260. value: SpatialSeries
  1261. - schemaKey: PropertyValue
  1262. value: ProcessingModule
  1263. wasAttributedTo:
  1264. - age:
  1265. schemaKey: PropertyValue
  1266. unitText: ISO-8601 duration
  1267. value: P6DT48600S
  1268. valueReference:
  1269. schemaKey: PropertyValue
  1270. value: dandi:BirthReference
  1271. identifier: Temp_pref_F32_B32_6dpf_17_unsorted_nac
  1272. schemaKey: Participant
  1273. sex:
  1274. name: Unknown
  1275. schemaKey: SexType
  1276. species:
  1277. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  1278. name: Danio rerio - Zebra fish
  1279. schemaKey: SpeciesType
  1280. wasGeneratedBy:
  1281. - description: Hot Avoidance behavior
  1282. name: Acquisition session
  1283. schemaKey: Session
  1284. startDate: '2023-07-12T13:30:00-04:00'
  1285. - description: Metadata generated by DANDI cli
  1286. endDate: '2023-11-11T11:08:59.842161-05:00'
  1287. id: urn:uuid:b0a2a128-7fc3-4fe2-ab81-cd62f8443527
  1288. name: Metadata generation
  1289. schemaKey: Activity
  1290. startDate: '2023-11-11T11:08:59.801816-05:00'
  1291. wasAssociatedWith:
  1292. - identifier: RRID:SCR_019009
  1293. name: DANDI Command Line Interface
  1294. schemaKey: Software
  1295. url: https://github.com/dandi/dandi-cli
  1296. version: 0.58.0
  1297. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1298. access:
  1299. - schemaKey: AccessRequirements
  1300. status: dandi:EmbargoedAccess
  1301. approach:
  1302. - name: behavioral approach
  1303. schemaKey: ApproachType
  1304. blobDateModified: '2023-11-10T11:55:25.530000-05:00'
  1305. contentSize: 9550336
  1306. contentUrl:
  1307. - https://api.dandiarchive.org/api/assets/559d52c6-800a-460f-806d-9c943548397c/download/
  1308. - https://dandiarchive.s3.amazonaws.com/blobs/e06/c5f/e06c5f35-6613-4f88-becc-0056e201533a
  1309. dateModified: '2023-11-11T11:09:00.817658-05:00'
  1310. digest:
  1311. dandi:dandi-etag: 377ef5a4d404c0bd1ac7600392af3b98-1
  1312. dandi:sha2-256: 1c33ec788123cce2b8c1eada4cceffd1e2c7a1180b8ba9ae6c80375b632f5324
  1313. encodingFormat: application/x-nwb
  1314. id: dandiasset:559d52c6-800a-460f-806d-9c943548397c
  1315. identifier: 559d52c6-800a-460f-806d-9c943548397c
  1316. measurementTechnique:
  1317. - name: analytical technique
  1318. schemaKey: MeasurementTechniqueType
  1319. - name: behavioral technique
  1320. schemaKey: MeasurementTechniqueType
  1321. path: sub-Temp-pref-F32-B32-6dpf-19-unsorted-nac/sub-Temp-pref-F32-B32-6dpf-19-unsorted-nac_ses-20230712T145800_behavior.nwb
  1322. schemaKey: Asset
  1323. schemaVersion: 0.6.4
  1324. variableMeasured:
  1325. - schemaKey: PropertyValue
  1326. value: CompassDirection
  1327. - schemaKey: PropertyValue
  1328. value: BehavioralTimeSeries
  1329. - schemaKey: PropertyValue
  1330. value: Position
  1331. - schemaKey: PropertyValue
  1332. value: SpatialSeries
  1333. - schemaKey: PropertyValue
  1334. value: ProcessingModule
  1335. wasAttributedTo:
  1336. - age:
  1337. schemaKey: PropertyValue
  1338. unitText: ISO-8601 duration
  1339. value: P6DT53880S
  1340. valueReference:
  1341. schemaKey: PropertyValue
  1342. value: dandi:BirthReference
  1343. identifier: Temp_pref_F32_B32_6dpf_19_unsorted_nac
  1344. schemaKey: Participant
  1345. sex:
  1346. name: Unknown
  1347. schemaKey: SexType
  1348. species:
  1349. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  1350. name: Danio rerio - Zebra fish
  1351. schemaKey: SpeciesType
  1352. wasGeneratedBy:
  1353. - description: Hot Avoidance behavior
  1354. name: Acquisition session
  1355. schemaKey: Session
  1356. startDate: '2023-07-12T14:58:00-04:00'
  1357. - description: Metadata generated by DANDI cli
  1358. endDate: '2023-11-11T11:09:00.817658-05:00'
  1359. id: urn:uuid:cf649cad-1b05-4cb9-9098-967eaee7f241
  1360. name: Metadata generation
  1361. schemaKey: Activity
  1362. startDate: '2023-11-11T11:09:00.787658-05:00'
  1363. wasAssociatedWith:
  1364. - identifier: RRID:SCR_019009
  1365. name: DANDI Command Line Interface
  1366. schemaKey: Software
  1367. url: https://github.com/dandi/dandi-cli
  1368. version: 0.58.0
  1369. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1370. access:
  1371. - schemaKey: AccessRequirements
  1372. status: dandi:EmbargoedAccess
  1373. approach:
  1374. - name: behavioral approach
  1375. schemaKey: ApproachType
  1376. blobDateModified: '2023-11-10T11:55:29.020000-05:00'
  1377. contentSize: 9511347
  1378. contentUrl:
  1379. - https://api.dandiarchive.org/api/assets/680deb2b-9604-459e-b9c1-3ddb5753b149/download/
  1380. - https://dandiarchive.s3.amazonaws.com/blobs/450/149/4501491e-a797-48fc-99d7-23b468868788
  1381. dateModified: '2023-11-11T11:09:00.817658-05:00'
  1382. digest:
  1383. dandi:dandi-etag: 4d74eabe45567def5c0d4d0e41f058f5-1
  1384. dandi:sha2-256: 9938db92ea04b404bffce5f100f19e1347482eea1c1c8b98fc054267a44ededf
  1385. encodingFormat: application/x-nwb
  1386. id: dandiasset:680deb2b-9604-459e-b9c1-3ddb5753b149
  1387. identifier: 680deb2b-9604-459e-b9c1-3ddb5753b149
  1388. measurementTechnique:
  1389. - name: analytical technique
  1390. schemaKey: MeasurementTechniqueType
  1391. - name: behavioral technique
  1392. schemaKey: MeasurementTechniqueType
  1393. path: sub-Temp-pref-F32-B32-6dpf-20-unsorted-nac/sub-Temp-pref-F32-B32-6dpf-20-unsorted-nac_ses-20230712T153100_behavior.nwb
  1394. schemaKey: Asset
  1395. schemaVersion: 0.6.4
  1396. variableMeasured:
  1397. - schemaKey: PropertyValue
  1398. value: CompassDirection
  1399. - schemaKey: PropertyValue
  1400. value: BehavioralTimeSeries
  1401. - schemaKey: PropertyValue
  1402. value: Position
  1403. - schemaKey: PropertyValue
  1404. value: SpatialSeries
  1405. - schemaKey: PropertyValue
  1406. value: ProcessingModule
  1407. wasAttributedTo:
  1408. - age:
  1409. schemaKey: PropertyValue
  1410. unitText: ISO-8601 duration
  1411. value: P6DT55860S
  1412. valueReference:
  1413. schemaKey: PropertyValue
  1414. value: dandi:BirthReference
  1415. identifier: Temp_pref_F32_B32_6dpf_20_unsorted_nac
  1416. schemaKey: Participant
  1417. sex:
  1418. name: Unknown
  1419. schemaKey: SexType
  1420. species:
  1421. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  1422. name: Danio rerio - Zebra fish
  1423. schemaKey: SpeciesType
  1424. wasGeneratedBy:
  1425. - description: Hot Avoidance behavior
  1426. name: Acquisition session
  1427. schemaKey: Session
  1428. startDate: '2023-07-12T15:31:00-04:00'
  1429. - description: Metadata generated by DANDI cli
  1430. endDate: '2023-11-11T11:09:00.817658-05:00'
  1431. id: urn:uuid:e79fad32-c04e-43b2-832e-205dd5ceb352
  1432. name: Metadata generation
  1433. schemaKey: Activity
  1434. startDate: '2023-11-11T11:09:00.747659-05:00'
  1435. wasAssociatedWith:
  1436. - identifier: RRID:SCR_019009
  1437. name: DANDI Command Line Interface
  1438. schemaKey: Software
  1439. url: https://github.com/dandi/dandi-cli
  1440. version: 0.58.0
Tip!

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

Comments

Loading...