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
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:EmbargoedAccess
approach:
- name: behavioral approach
schemaKey: ApproachType
blobDateModified: '2023-11-10T11:44:12.870000-05:00'
contentSize: 9195239
contentUrl:
- https://api.dandiarchive.org/api/assets/2d7c44da-1c40-46a8-ad57-7e1387c5d71c/download/
- https://dandiarchive.s3.amazonaws.com/blobs/2c8/031/2c80310c-015e-4caa-ae25-842264d1811a
dateModified: '2023-11-11T10:42:49.221461-05:00'
digest:
dandi:dandi-etag: 6cd9f59a3b4f28d4716d5c59e961640e-1
dandi:sha2-256: 122792e055f73c029dd254478e1bf08e79dbd6c4243b201f096004e836fa0032
encodingFormat: application/x-nwb
id: dandiasset:2d7c44da-1c40-46a8-ad57-7e1387c5d71c
identifier: 2d7c44da-1c40-46a8-ad57-7e1387c5d71c
measurementTechnique:
- name: analytical technique
schemaKey: MeasurementTechniqueType
- name: behavioral technique
schemaKey: MeasurementTechniqueType
path: sub-Temp-pref-F18-B18-5dpf-03-unsorted-nac/sub-Temp-pref-F18-B18-5dpf-03-unsorted-nac_ses-20230718T131100_behavior.nwb
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: SpatialSeries
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: CompassDirection
- schemaKey: PropertyValue
value: BehavioralTimeSeries
- schemaKey: PropertyValue
value: Position
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P5DT47460S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: Temp_pref_F18_B18_5dpf_03_unsorted_nac
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
name: Danio rerio - Zebra fish
schemaKey: SpeciesType
wasGeneratedBy:
- description: Cold Avoidance behavior
name: Acquisition session
schemaKey: Session
startDate: '2023-07-18T13:11:00-04:00'
- description: Metadata generated by DANDI cli
endDate: '2023-11-11T10:42:49.221461-05:00'
id: urn:uuid:04655646-b776-42e1-9cc9-312486789b35
name: Metadata generation
schemaKey: Activity
startDate: '2023-11-11T10:42:49.221461-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.58.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:EmbargoedAccess
approach:
- name: behavioral approach
schemaKey: ApproachType
blobDateModified: '2023-11-10T11:44:19.920000-05:00'
contentSize: 8714968
contentUrl:
- https://api.dandiarchive.org/api/assets/d73f39f8-bfc0-4d6f-a2fc-cfafcbd06aad/download/
- https://dandiarchive.s3.amazonaws.com/blobs/34a/99f/34a99f9f-5cad-4abe-a76b-960237ec08c7
dateModified: '2023-11-11T10:42:49.291461-05:00'
digest:
dandi:dandi-etag: 6dcd20f7bd8e46fddd48622f6926308a-1
dandi:sha2-256: 4d4072c2b479d439b0bc12c28bf70460de5e79627f7d2045ad81ada8a52f7d13
encodingFormat: application/x-nwb
id: dandiasset:d73f39f8-bfc0-4d6f-a2fc-cfafcbd06aad
identifier: d73f39f8-bfc0-4d6f-a2fc-cfafcbd06aad
measurementTechnique:
- name: analytical technique
schemaKey: MeasurementTechniqueType
- name: behavioral technique
schemaKey: MeasurementTechniqueType
path: sub-Temp-pref-F18-B18-5dpf-05-unsorted-nac/sub-Temp-pref-F18-B18-5dpf-05-unsorted-nac_ses-20230718T142500_behavior.nwb
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: SpatialSeries
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: CompassDirection
- schemaKey: PropertyValue
value: BehavioralTimeSeries
- schemaKey: PropertyValue
value: Position
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P5DT51900S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: Temp_pref_F18_B18_5dpf_05_unsorted_nac
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
name: Danio rerio - Zebra fish
schemaKey: SpeciesType
wasGeneratedBy:
- description: Cold Avoidance behavior
name: Acquisition session
schemaKey: Session
startDate: '2023-07-18T14:25:00-04:00'
- description: Metadata generated by DANDI cli
endDate: '2023-11-11T10:42:49.291461-05:00'
id: urn:uuid:f566dc11-0822-4d03-9c36-4771658bd2b3
name: Metadata generation
schemaKey: Activity
startDate: '2023-11-11T10:42:49.251462-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.58.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:EmbargoedAccess
approach:
- name: behavioral approach
schemaKey: ApproachType
blobDateModified: '2023-11-10T11:44:09.420000-05:00'
contentSize: 9307666
contentUrl:
- https://api.dandiarchive.org/api/assets/0cc30089-1e6d-4ee1-b57c-48aa8938da20/download/
- https://dandiarchive.s3.amazonaws.com/blobs/e9c/aad/e9caadb1-d652-4f1b-9d09-8026b3ca6960
dateModified: '2023-11-11T10:42:49.291461-05:00'
digest:
dandi:dandi-etag: 72ab796974cb77115953110346b64075-1
dandi:sha2-256: becf79cbb7e5465ce2918eae348c00669ab0ebb5d8d1d464440bbe95e8ee2b8d
encodingFormat: application/x-nwb
id: dandiasset:0cc30089-1e6d-4ee1-b57c-48aa8938da20
identifier: 0cc30089-1e6d-4ee1-b57c-48aa8938da20
measurementTechnique:
- name: analytical technique
schemaKey: MeasurementTechniqueType
- name: behavioral technique
schemaKey: MeasurementTechniqueType
path: sub-Temp-pref-F18-B18-5dpf-02-unsorted-nac/sub-Temp-pref-F18-B18-5dpf-02-unsorted-nac_ses-20230718T123900_behavior.nwb
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: SpatialSeries
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: CompassDirection
- schemaKey: PropertyValue
value: BehavioralTimeSeries
- schemaKey: PropertyValue
value: Position
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P5DT45540S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: Temp_pref_F18_B18_5dpf_02_unsorted_nac
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
name: Danio rerio - Zebra fish
schemaKey: SpeciesType
wasGeneratedBy:
- description: Cold Avoidance behavior
name: Acquisition session
schemaKey: Session
startDate: '2023-07-18T12:39:00-04:00'
- description: Metadata generated by DANDI cli
endDate: '2023-11-11T10:42:49.291461-05:00'
id: urn:uuid:3c2cbe21-1d56-4b8c-b131-c918967d52b0
name: Metadata generation
schemaKey: Activity
startDate: '2023-11-11T10:42:49.271113-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.58.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:EmbargoedAccess
approach:
- name: behavioral approach
schemaKey: ApproachType
blobDateModified: '2023-11-10T11:44:16.470000-05:00'
contentSize: 9197303
contentUrl:
- https://api.dandiarchive.org/api/assets/c05b2ee1-764b-4c89-b77e-b03b7f445b85/download/
- https://dandiarchive.s3.amazonaws.com/blobs/78a/068/78a06818-3736-4fcc-92a2-fa02a0eae077
dateModified: '2023-11-11T10:42:49.151113-05:00'
digest:
dandi:dandi-etag: 96cb3cdfc64c536945d91f776fa90fac-1
dandi:sha2-256: 3f0a18126d68c4d918583994ddb7fc941c6976b2af55f46d01cc68a23e5345b6
encodingFormat: application/x-nwb
id: dandiasset:c05b2ee1-764b-4c89-b77e-b03b7f445b85
identifier: c05b2ee1-764b-4c89-b77e-b03b7f445b85
measurementTechnique:
- name: analytical technique
schemaKey: MeasurementTechniqueType
- name: behavioral technique
schemaKey: MeasurementTechniqueType
path: sub-Temp-pref-F18-B18-5dpf-04-unsorted-nac/sub-Temp-pref-F18-B18-5dpf-04-unsorted-nac_ses-20230718T134200_behavior.nwb
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: SpatialSeries
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: CompassDirection
- schemaKey: PropertyValue
value: BehavioralTimeSeries
- schemaKey: PropertyValue
value: Position
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P5DT49320S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: Temp_pref_F18_B18_5dpf_04_unsorted_nac
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
name: Danio rerio - Zebra fish
schemaKey: SpeciesType
wasGeneratedBy:
- description: Cold Avoidance behavior
name: Acquisition session
schemaKey: Session
startDate: '2023-07-18T13:42:00-04:00'
- description: Metadata generated by DANDI cli
endDate: '2023-11-11T10:42:49.151113-05:00'
id: urn:uuid:6b5446e7-a2ef-494a-a883-558051a5d1ba
name: Metadata generation
schemaKey: Activity
startDate: '2023-11-11T10:42:49.151113-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.58.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:EmbargoedAccess
approach:
- name: behavioral approach
schemaKey: ApproachType
blobDateModified: '2023-11-10T11:44:05.850000-05:00'
contentSize: 8252329
contentUrl:
- https://api.dandiarchive.org/api/assets/32ee7603-62f9-42ae-84fe-5b9a7de867e0/download/
- https://dandiarchive.s3.amazonaws.com/blobs/943/c23/943c2340-bcd7-4dd9-8995-ae60aa8b3ef8
dateModified: '2023-11-11T10:42:49.291461-05:00'
digest:
dandi:dandi-etag: 36e040b902eee1e67652a303e90f3c07-1
dandi:sha2-256: 7662516b5df15eb58bffa846e7244c50f2f2970ab4af665c2a5d5575e2ab1e12
encodingFormat: application/x-nwb
id: dandiasset:32ee7603-62f9-42ae-84fe-5b9a7de867e0
identifier: 32ee7603-62f9-42ae-84fe-5b9a7de867e0
measurementTechnique:
- name: analytical technique
schemaKey: MeasurementTechniqueType
- name: behavioral technique
schemaKey: MeasurementTechniqueType
path: sub-Temp-pref-F18-B18-5dpf-01-unsorted-nac/sub-Temp-pref-F18-B18-5dpf-01-unsorted-nac_ses-20230718T115600_behavior.nwb
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: SpatialSeries
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: CompassDirection
- schemaKey: PropertyValue
value: BehavioralTimeSeries
- schemaKey: PropertyValue
value: Position
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P5DT42960S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: Temp_pref_F18_B18_5dpf_01_unsorted_nac
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
name: Danio rerio - Zebra fish
schemaKey: SpeciesType
wasGeneratedBy:
- description: Cold Avoidance behavior
name: Acquisition session
schemaKey: Session
startDate: '2023-07-18T11:56:00-04:00'
- description: Metadata generated by DANDI cli
endDate: '2023-11-11T10:42:49.291461-05:00'
id: urn:uuid:4412e4f2-e483-4f3b-82fc-ad16248f879c
name: Metadata generation
schemaKey: Activity
startDate: '2023-11-11T10:42:49.291461-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.58.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:EmbargoedAccess
approach:
- name: behavioral approach
schemaKey: ApproachType
blobDateModified: '2023-11-10T11:44:23.430000-05:00'
contentSize: 8226046
contentUrl:
- https://api.dandiarchive.org/api/assets/97589511-470c-4c7f-aff4-2b0927502182/download/
- https://dandiarchive.s3.amazonaws.com/blobs/f7e/a2e/f7ea2eaa-0141-4921-9e33-702c8220e440
dateModified: '2023-11-11T10:42:52.271675-05:00'
digest:
dandi:dandi-etag: 0da68c6071db4f7ca00f53b933842218-1
dandi:sha2-256: f38ea3371e0bc88e11c7e45729e46c38b4c2959493c46014988bc431a85ea539
encodingFormat: application/x-nwb
id: dandiasset:97589511-470c-4c7f-aff4-2b0927502182
identifier: 97589511-470c-4c7f-aff4-2b0927502182
measurementTechnique:
- name: analytical technique
schemaKey: MeasurementTechniqueType
- name: behavioral technique
schemaKey: MeasurementTechniqueType
path: sub-Temp-pref-F18-B18-5dpf-06-unsorted-nac/sub-Temp-pref-F18-B18-5dpf-06-unsorted-nac_ses-20230718T145600_behavior.nwb
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: SpatialSeries
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: CompassDirection
- schemaKey: PropertyValue
value: BehavioralTimeSeries
- schemaKey: PropertyValue
value: Position
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P5DT53760S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: Temp_pref_F18_B18_5dpf_06_unsorted_nac
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
name: Danio rerio - Zebra fish
schemaKey: SpeciesType
wasGeneratedBy:
- description: Cold Avoidance behavior
name: Acquisition session
schemaKey: Session
startDate: '2023-07-18T14:56:00-04:00'
- description: Metadata generated by DANDI cli
endDate: '2023-11-11T10:42:52.271675-05:00'
id: urn:uuid:d8adf77c-e900-407b-b552-945f3de2eb18
name: Metadata generation
schemaKey: Activity
startDate: '2023-11-11T10:42:52.262024-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.58.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:EmbargoedAccess
approach:
- name: behavioral approach
schemaKey: ApproachType
blobDateModified: '2023-11-10T11:44:30.470000-05:00'
contentSize: 9389211
contentUrl:
- https://api.dandiarchive.org/api/assets/d6617c6e-bd30-45af-8af6-6c9cca8e23d7/download/
- https://dandiarchive.s3.amazonaws.com/blobs/4d6/269/4d6269e9-ed0b-49fa-91f1-76d9bc334a2d
dateModified: '2023-11-11T10:42:53.258039-05:00'
digest:
dandi:dandi-etag: fa0556cae6155d8ab6c7b3eebdcb76f8-1
dandi:sha2-256: 46cd07bcb4a47e69367a3af00484d328571b943242f75d2779fc0bfeaa1fdcc5
encodingFormat: application/x-nwb
id: dandiasset:d6617c6e-bd30-45af-8af6-6c9cca8e23d7
identifier: d6617c6e-bd30-45af-8af6-6c9cca8e23d7
measurementTechnique:
- name: analytical technique
schemaKey: MeasurementTechniqueType
- name: behavioral technique
schemaKey: MeasurementTechniqueType
path: sub-Temp-pref-F18-B18-5dpf-08-unsorted-nac/sub-Temp-pref-F18-B18-5dpf-08-unsorted-nac_ses-20230718T155800_behavior.nwb
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: SpatialSeries
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: CompassDirection
- schemaKey: PropertyValue
value: BehavioralTimeSeries
- schemaKey: PropertyValue
value: Position
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P5DT57480S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: Temp_pref_F18_B18_5dpf_08_unsorted_nac
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
name: Danio rerio - Zebra fish
schemaKey: SpeciesType
wasGeneratedBy:
- description: Cold Avoidance behavior
name: Acquisition session
schemaKey: Session
startDate: '2023-07-18T15:58:00-04:00'
- description: Metadata generated by DANDI cli
endDate: '2023-11-11T10:42:53.258039-05:00'
id: urn:uuid:cbf23bee-89d7-4bb7-85e5-ed53cc0404c7
name: Metadata generation
schemaKey: Activity
startDate: '2023-11-11T10:42:53.258039-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.58.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:EmbargoedAccess
approach:
- name: behavioral approach
schemaKey: ApproachType
blobDateModified: '2023-11-10T11:44:37.510000-05:00'
contentSize: 9151106
contentUrl:
- https://api.dandiarchive.org/api/assets/bd7280d9-8f7a-491e-bdae-1fa05925c8a3/download/
- https://dandiarchive.s3.amazonaws.com/blobs/9e9/44e/9e944e27-6d53-48ed-81db-24c9487f7eab
dateModified: '2023-11-11T10:42:53.468035-05:00'
digest:
dandi:dandi-etag: f503cacfcd9f355dc92cfdaeff335e63-1
dandi:sha2-256: a7720ebf663d930f73cca3355a348d9d973c098c7e5cd52548a8020f7e620bf1
encodingFormat: application/x-nwb
id: dandiasset:bd7280d9-8f7a-491e-bdae-1fa05925c8a3
identifier: bd7280d9-8f7a-491e-bdae-1fa05925c8a3
measurementTechnique:
- name: analytical technique
schemaKey: MeasurementTechniqueType
- name: behavioral technique
schemaKey: MeasurementTechniqueType
path: sub-Temp-pref-F18-B18-5dpf-10-unsorted-nac/sub-Temp-pref-F18-B18-5dpf-10-unsorted-nac_ses-20230718T170200_behavior.nwb
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: SpatialSeries
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: CompassDirection
- schemaKey: PropertyValue
value: BehavioralTimeSeries
- schemaKey: PropertyValue
value: Position
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P5DT61320S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: Temp_pref_F18_B18_5dpf_10_unsorted_nac
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
name: Danio rerio - Zebra fish
schemaKey: SpeciesType
wasGeneratedBy:
- description: Cold Avoidance behavior
name: Acquisition session
schemaKey: Session
startDate: '2023-07-18T17:02:00-04:00'
- description: Metadata generated by DANDI cli
endDate: '2023-11-11T10:42:53.468035-05:00'
id: urn:uuid:7929a73e-21eb-4e7e-a700-18ee6dc1a715
name: Metadata generation
schemaKey: Activity
startDate: '2023-11-11T10:42:53.358038-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.58.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:EmbargoedAccess
approach:
- name: behavioral approach
schemaKey: ApproachType
blobDateModified: '2023-11-10T11:44:33.950000-05:00'
contentSize: 9271342
contentUrl:
- https://api.dandiarchive.org/api/assets/c286e83d-5264-42d1-8eef-5234d5a782af/download/
- https://dandiarchive.s3.amazonaws.com/blobs/5b3/c8c/5b3c8c6e-35a4-41df-bb33-f34fc97011a9
dateModified: '2023-11-11T10:42:53.478039-05:00'
digest:
dandi:dandi-etag: 876282e885ad29b37f04c35c5f067850-1
dandi:sha2-256: f1c805013ccf62b17baf9848340df107daa8cbfb35b511d1cf59b8f7127a562d
encodingFormat: application/x-nwb
id: dandiasset:c286e83d-5264-42d1-8eef-5234d5a782af
identifier: c286e83d-5264-42d1-8eef-5234d5a782af
measurementTechnique:
- name: analytical technique
schemaKey: MeasurementTechniqueType
- name: behavioral technique
schemaKey: MeasurementTechniqueType
path: sub-Temp-pref-F18-B18-5dpf-09-unsorted-nac/sub-Temp-pref-F18-B18-5dpf-09-unsorted-nac_ses-20230718T163000_behavior.nwb
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: SpatialSeries
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: CompassDirection
- schemaKey: PropertyValue
value: BehavioralTimeSeries
- schemaKey: PropertyValue
value: Position
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P5DT59400S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: Temp_pref_F18_B18_5dpf_09_unsorted_nac
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
name: Danio rerio - Zebra fish
schemaKey: SpeciesType
wasGeneratedBy:
- description: Cold Avoidance behavior
name: Acquisition session
schemaKey: Session
startDate: '2023-07-18T16:30:00-04:00'
- description: Metadata generated by DANDI cli
endDate: '2023-11-11T10:42:53.478039-05:00'
id: urn:uuid:e9e5f747-02fd-4fed-9bf0-138819730817
name: Metadata generation
schemaKey: Activity
startDate: '2023-11-11T10:42:53.408036-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.58.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:EmbargoedAccess
approach:
- name: behavioral approach
schemaKey: ApproachType
blobDateModified: '2023-11-10T11:44:26.890000-05:00'
contentSize: 9292295
contentUrl:
- https://api.dandiarchive.org/api/assets/1110ac1d-e328-4b38-979a-d2738584b46e/download/
- https://dandiarchive.s3.amazonaws.com/blobs/a19/6c8/a196c8c3-c3c1-4496-8cf7-b30220efa29a
dateModified: '2023-11-11T10:42:53.548035-05:00'
digest:
dandi:dandi-etag: 79b76aab796850bc1f052cd9c12a8f44-1
dandi:sha2-256: 7f14188a88c8c727eaa58fa2e7e5febd23fecaef9333cf2c8c089abb7dec7154
encodingFormat: application/x-nwb
id: dandiasset:1110ac1d-e328-4b38-979a-d2738584b46e
identifier: 1110ac1d-e328-4b38-979a-d2738584b46e
measurementTechnique:
- name: analytical technique
schemaKey: MeasurementTechniqueType
- name: behavioral technique
schemaKey: MeasurementTechniqueType
path: sub-Temp-pref-F18-B18-5dpf-07-unsorted-nac/sub-Temp-pref-F18-B18-5dpf-07-unsorted-nac_ses-20230718T152700_behavior.nwb
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: SpatialSeries
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: CompassDirection
- schemaKey: PropertyValue
value: BehavioralTimeSeries
- schemaKey: PropertyValue
value: Position
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P5DT55620S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: Temp_pref_F18_B18_5dpf_07_unsorted_nac
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
name: Danio rerio - Zebra fish
schemaKey: SpeciesType
wasGeneratedBy:
- description: Cold Avoidance behavior
name: Acquisition session
schemaKey: Session
startDate: '2023-07-18T15:27:00-04:00'
- description: Metadata generated by DANDI cli
endDate: '2023-11-11T10:42:53.548035-05:00'
id: urn:uuid:7bb471ff-eae2-4307-ac7f-1d60850c3146
name: Metadata generation
schemaKey: Activity
startDate: '2023-11-11T10:42:53.437688-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.58.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:EmbargoedAccess
approach:
- name: behavioral approach
schemaKey: ApproachType
blobDateModified: '2023-11-10T11:44:41.040000-05:00'
contentSize: 8889153
contentUrl:
- https://api.dandiarchive.org/api/assets/8ef388ac-cb73-45d3-84bd-bed60dd4670f/download/
- https://dandiarchive.s3.amazonaws.com/blobs/ac6/f9c/ac6f9c95-1370-4852-916d-4258c50dacf6
dateModified: '2023-11-11T10:42:54.418377-05:00'
digest:
dandi:dandi-etag: 8b62de3a23b50b8a1d9417ff1fcc293e-1
dandi:sha2-256: 746856fdc174e8673c720a91b36d7d7046ca74f19ef749aec010067967164062
encodingFormat: application/x-nwb
id: dandiasset:8ef388ac-cb73-45d3-84bd-bed60dd4670f
identifier: 8ef388ac-cb73-45d3-84bd-bed60dd4670f
measurementTechnique:
- name: analytical technique
schemaKey: MeasurementTechniqueType
- name: behavioral technique
schemaKey: MeasurementTechniqueType
path: sub-Temp-pref-F18-B18-7dpf-15-unsorted-nac/sub-Temp-pref-F18-B18-7dpf-15-unsorted-nac_ses-20231026T112600_behavior.nwb
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: SpatialSeries
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: CompassDirection
- schemaKey: PropertyValue
value: BehavioralTimeSeries
- schemaKey: PropertyValue
value: Position
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P5DT41160S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: Temp_pref_F18_B18_7dpf_15_unsorted_nac
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
name: Danio rerio - Zebra fish
schemaKey: SpeciesType
wasGeneratedBy:
- description: Cold Avoidance behavior
name: Acquisition session
schemaKey: Session
startDate: '2023-10-26T11:26:00-04:00'
- description: Metadata generated by DANDI cli
endDate: '2023-11-11T10:42:54.418377-05:00'
id: urn:uuid:f689301e-debc-45db-ab7c-8994b05f35e6
name: Metadata generation
schemaKey: Activity
startDate: '2023-11-11T10:42:54.418377-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.58.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:EmbargoedAccess
approach:
- name: behavioral approach
schemaKey: ApproachType
blobDateModified: '2023-11-10T11:44:44.520000-05:00'
contentSize: 8895741
contentUrl:
- https://api.dandiarchive.org/api/assets/581487c1-47f4-4f54-bc42-f04a8dbc7492/download/
- https://dandiarchive.s3.amazonaws.com/blobs/bbb/704/bbb7040d-201d-484e-b21b-10a0ea8c6249
dateModified: '2023-11-11T10:42:55.724023-05:00'
digest:
dandi:dandi-etag: c3dffc556986be2fadc096d9fb85aac3-1
dandi:sha2-256: d4da269ac83824f426400e252f39ed7712542f80bb81750c94c5602fadfa2096
encodingFormat: application/x-nwb
id: dandiasset:581487c1-47f4-4f54-bc42-f04a8dbc7492
identifier: 581487c1-47f4-4f54-bc42-f04a8dbc7492
measurementTechnique:
- name: analytical technique
schemaKey: MeasurementTechniqueType
- name: behavioral technique
schemaKey: MeasurementTechniqueType
path: sub-Temp-pref-F18-B18-7dpf-16-unsorted-nac/sub-Temp-pref-F18-B18-7dpf-16-unsorted-nac_ses-20231026T121000_behavior.nwb
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: SpatialSeries
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: CompassDirection
- schemaKey: PropertyValue
value: BehavioralTimeSeries
- schemaKey: PropertyValue
value: Position
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P5DT43800S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: Temp_pref_F18_B18_7dpf_16_unsorted_nac
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
name: Danio rerio - Zebra fish
schemaKey: SpeciesType
wasGeneratedBy:
- description: Cold Avoidance behavior
name: Acquisition session
schemaKey: Session
startDate: '2023-10-26T12:10:00-04:00'
- description: Metadata generated by DANDI cli
endDate: '2023-11-11T10:42:55.724023-05:00'
id: urn:uuid:af378da8-184e-4c3e-82c8-aaa4e86fb636
name: Metadata generation
schemaKey: Activity
startDate: '2023-11-11T10:42:55.704028-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.58.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:EmbargoedAccess
approach:
- name: behavioral approach
schemaKey: ApproachType
blobDateModified: '2023-11-10T11:44:48.110000-05:00'
contentSize: 8868825
contentUrl:
- https://api.dandiarchive.org/api/assets/dde8daea-dd51-4ec0-bae9-0de63f7013b8/download/
- https://dandiarchive.s3.amazonaws.com/blobs/0f8/31e/0f831ec8-2f49-424d-84cf-6fd8d294c3da
dateModified: '2023-11-11T10:42:56.663682-05:00'
digest:
dandi:dandi-etag: 44c9602793f401e0b4f3ae456a4973fe-1
dandi:sha2-256: b75dd9d0bd953b49ab47d2c8fff7e755cf1c7319ad7a8d9ff94a7f567a575a19
encodingFormat: application/x-nwb
id: dandiasset:dde8daea-dd51-4ec0-bae9-0de63f7013b8
identifier: dde8daea-dd51-4ec0-bae9-0de63f7013b8
measurementTechnique:
- name: analytical technique
schemaKey: MeasurementTechniqueType
- name: behavioral technique
schemaKey: MeasurementTechniqueType
path: sub-Temp-pref-F18-B18-7dpf-17-unsorted-nac/sub-Temp-pref-F18-B18-7dpf-17-unsorted-nac_ses-20231026T124800_behavior.nwb
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: SpatialSeries
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: CompassDirection
- schemaKey: PropertyValue
value: BehavioralTimeSeries
- schemaKey: PropertyValue
value: Position
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P5DT46080S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: Temp_pref_F18_B18_7dpf_17_unsorted_nac
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
name: Danio rerio - Zebra fish
schemaKey: SpeciesType
wasGeneratedBy:
- description: Cold Avoidance behavior
name: Acquisition session
schemaKey: Session
startDate: '2023-10-26T12:48:00-04:00'
- description: Metadata generated by DANDI cli
endDate: '2023-11-11T10:42:56.663682-05:00'
id: urn:uuid:de986e32-b229-4864-94ea-02a2b77ed5b7
name: Metadata generation
schemaKey: Activity
startDate: '2023-11-11T10:42:56.654034-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.58.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:EmbargoedAccess
approach:
- name: behavioral approach
schemaKey: ApproachType
blobDateModified: '2023-11-10T11:44:51.580000-05:00'
contentSize: 8945137
contentUrl:
- https://api.dandiarchive.org/api/assets/eedea229-6149-43d0-8a67-1578905e3acf/download/
- https://dandiarchive.s3.amazonaws.com/blobs/ba1/8f0/ba18f029-7c8f-421b-a9c2-2c2886ff3668
dateModified: '2023-11-11T10:42:56.899642-05:00'
digest:
dandi:dandi-etag: 23e5826b206191af8588beff559c748a-1
dandi:sha2-256: b5c104237fc18b90c75682aefbba24f4a40c99c59a3eeaec92760bf64cd81223
encodingFormat: application/x-nwb
id: dandiasset:eedea229-6149-43d0-8a67-1578905e3acf
identifier: eedea229-6149-43d0-8a67-1578905e3acf
measurementTechnique:
- name: analytical technique
schemaKey: MeasurementTechniqueType
- name: behavioral technique
schemaKey: MeasurementTechniqueType
path: sub-Temp-pref-F18-B18-7dpf-18-unsorted-nac/sub-Temp-pref-F18-B18-7dpf-18-unsorted-nac_ses-20231026T131900_behavior.nwb
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: SpatialSeries
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: CompassDirection
- schemaKey: PropertyValue
value: BehavioralTimeSeries
- schemaKey: PropertyValue
value: Position
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P5DT47940S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: Temp_pref_F18_B18_7dpf_18_unsorted_nac
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
name: Danio rerio - Zebra fish
schemaKey: SpeciesType
wasGeneratedBy:
- description: Cold Avoidance behavior
name: Acquisition session
schemaKey: Session
startDate: '2023-10-26T13:19:00-04:00'
- description: Metadata generated by DANDI cli
endDate: '2023-11-11T10:42:56.899642-05:00'
id: urn:uuid:1203663b-7174-48fe-8236-60044ecd9dc3
name: Metadata generation
schemaKey: Activity
startDate: '2023-11-11T10:42:56.889643-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.58.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:EmbargoedAccess
approach:
- name: behavioral approach
schemaKey: ApproachType
blobDateModified: '2023-11-10T11:44:58.540000-05:00'
contentSize: 8834587
contentUrl:
- https://api.dandiarchive.org/api/assets/d69d6a82-002e-44ff-af1b-d3247a71c150/download/
- https://dandiarchive.s3.amazonaws.com/blobs/137/340/13734058-9fcb-4e75-a19b-534da6b45692
dateModified: '2023-11-11T10:42:57.599297-05:00'
digest:
dandi:dandi-etag: c0e0cb0ca9a66c045559b8aeaeb8a580-1
dandi:sha2-256: e43ce2c8c160edf1f3ce10dad4256c32ca9de6269fe3b5e3ae420c2ada4257b2
encodingFormat: application/x-nwb
id: dandiasset:d69d6a82-002e-44ff-af1b-d3247a71c150
identifier: d69d6a82-002e-44ff-af1b-d3247a71c150
measurementTechnique:
- name: analytical technique
schemaKey: MeasurementTechniqueType
- name: behavioral technique
schemaKey: MeasurementTechniqueType
path: sub-Temp-pref-F18-B18-7dpf-20-unsorted-nac/sub-Temp-pref-F18-B18-7dpf-20-unsorted-nac_ses-20231026T143600_behavior.nwb
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: SpatialSeries
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: CompassDirection
- schemaKey: PropertyValue
value: BehavioralTimeSeries
- schemaKey: PropertyValue
value: Position
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P7DT52560S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: Temp_pref_F18_B18_7dpf_20_unsorted_nac
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
name: Danio rerio - Zebra fish
schemaKey: SpeciesType
wasGeneratedBy:
- description: Cold Avoidance behavior
name: Acquisition session
schemaKey: Session
startDate: '2023-10-26T14:36:00-04:00'
- description: Metadata generated by DANDI cli
endDate: '2023-11-11T10:42:57.599297-05:00'
id: urn:uuid:d5f0925c-96df-463b-828b-9640382eb9f2
name: Metadata generation
schemaKey: Activity
startDate: '2023-11-11T10:42:57.559643-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.58.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:EmbargoedAccess
approach:
- name: behavioral approach
schemaKey: ApproachType
blobDateModified: '2023-11-10T11:44:55.140000-05:00'
contentSize: 8949214
contentUrl:
- https://api.dandiarchive.org/api/assets/226cf59b-9a83-4b14-af9a-afe73c9fc35c/download/
- https://dandiarchive.s3.amazonaws.com/blobs/049/a23/049a23cb-6566-4fc2-a7b7-77876cbcc832
dateModified: '2023-11-11T10:42:57.639645-05:00'
digest:
dandi:dandi-etag: 7d007bd5905ce08e96c624f0e970b9e6-1
dandi:sha2-256: 9de9b90fa9d39cdfcdb2f5c7a3a7f0618dc365c0bf8d2f9eadcb961a681d415e
encodingFormat: application/x-nwb
id: dandiasset:226cf59b-9a83-4b14-af9a-afe73c9fc35c
identifier: 226cf59b-9a83-4b14-af9a-afe73c9fc35c
measurementTechnique:
- name: analytical technique
schemaKey: MeasurementTechniqueType
- name: behavioral technique
schemaKey: MeasurementTechniqueType
path: sub-Temp-pref-F18-B18-7dpf-19-unsorted-nac/sub-Temp-pref-F18-B18-7dpf-19-unsorted-nac_ses-20231026T134900_behavior.nwb
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: SpatialSeries
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: CompassDirection
- schemaKey: PropertyValue
value: BehavioralTimeSeries
- schemaKey: PropertyValue
value: Position
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P5DT49740S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: Temp_pref_F18_B18_7dpf_19_unsorted_nac
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
name: Danio rerio - Zebra fish
schemaKey: SpeciesType
wasGeneratedBy:
- description: Cold Avoidance behavior
name: Acquisition session
schemaKey: Session
startDate: '2023-10-26T13:49:00-04:00'
- description: Metadata generated by DANDI cli
endDate: '2023-11-11T10:42:57.639645-05:00'
id: urn:uuid:5996a52f-242c-4adb-b097-41d4bd13d0ff
name: Metadata generation
schemaKey: Activity
startDate: '2023-11-11T10:42:57.589645-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.58.0
Tip!
Press p or to see the previous file or,
n or to see the next file