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
- '@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:43:25.580000-05:00'
contentSize: 9038552
contentUrl:
- https://api.dandiarchive.org/api/assets/2156e75f-7e58-48eb-93ec-6d60fdb4ad94/download/
- https://dandiarchive.s3.amazonaws.com/blobs/6eb/787/6eb787ee-afb8-4c07-8b4c-c17acacf1446
dateModified: '2023-11-11T10:39:27.944383-05:00'
digest:
dandi:dandi-etag: 09288600b30c957dc0c8d0349ad21eb1-1
dandi:sha2-256: a1bb1ca23f207e20a358f363e9348f0852e6a8e8a545ca31286ff7cf0dc6b8da
encodingFormat: application/x-nwb
id: dandiasset:2156e75f-7e58-48eb-93ec-6d60fdb4ad94
identifier: 2156e75f-7e58-48eb-93ec-6d60fdb4ad94
measurementTechnique:
- name: behavioral technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
path: sub-Temp-pref-F16-B16-6dpf-05-unsorted-nac/sub-Temp-pref-F16-B16-6dpf-05-unsorted-nac_ses-20230720T164700_behavior.nwb
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: SpatialSeries
- schemaKey: PropertyValue
value: Position
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: CompassDirection
- schemaKey: PropertyValue
value: BehavioralTimeSeries
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P6DT60420S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: Temp_pref_F16_B16_6dpf_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-20T16:47:00-04:00'
- description: Metadata generated by DANDI cli
endDate: '2023-11-11T10:39:27.944383-05:00'
id: urn:uuid:19cee66e-f806-466a-a7c6-5782f1930fe2
name: Metadata generation
schemaKey: Activity
startDate: '2023-11-11T10:39:27.944383-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:43:18.640000-05:00'
contentSize: 8065995
contentUrl:
- https://api.dandiarchive.org/api/assets/4d9af5ed-cce2-4415-9c9a-fed5ef2a1c81/download/
- https://dandiarchive.s3.amazonaws.com/blobs/670/e0b/670e0baa-a81e-4f5c-b61a-86e911793428
dateModified: '2023-11-11T10:39:27.684731-05:00'
digest:
dandi:dandi-etag: 8cac7daf3be4a4d8988cc491822e4383-1
dandi:sha2-256: f183283027ccbbea106688f82ddc3f5a28c5608ec164590587814760a678e772
encodingFormat: application/x-nwb
id: dandiasset:4d9af5ed-cce2-4415-9c9a-fed5ef2a1c81
identifier: 4d9af5ed-cce2-4415-9c9a-fed5ef2a1c81
measurementTechnique:
- name: behavioral technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
path: sub-Temp-pref-F16-B16-6dpf-03-unsorted-nac/sub-Temp-pref-F16-B16-6dpf-03-unsorted-nac_ses-20230720T154200_behavior.nwb
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: SpatialSeries
- schemaKey: PropertyValue
value: Position
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: CompassDirection
- schemaKey: PropertyValue
value: BehavioralTimeSeries
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P6DT56520S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: Temp_pref_F16_B16_6dpf_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-20T15:42:00-04:00'
- description: Metadata generated by DANDI cli
endDate: '2023-11-11T10:39:27.684731-05:00'
id: urn:uuid:e94dd0ea-37fb-4457-bc32-99806df54d53
name: Metadata generation
schemaKey: Activity
startDate: '2023-11-11T10:39:27.654381-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:43:11.790000-05:00'
contentSize: 8949529
contentUrl:
- https://api.dandiarchive.org/api/assets/7fa1413a-97af-4fcc-9e5d-dae4c93ab388/download/
- https://dandiarchive.s3.amazonaws.com/blobs/631/0f5/6310f53e-4ada-4038-93df-e8f46767ef52
dateModified: '2023-11-11T10:39:27.544381-05:00'
digest:
dandi:dandi-etag: d4cdadb214e13738abbf5dc7768aeff3-1
dandi:sha2-256: 258714b0b7ce3f6bfd5a9113b603c13ddc265ed5715a062158535e944ef702a7
encodingFormat: application/x-nwb
id: dandiasset:7fa1413a-97af-4fcc-9e5d-dae4c93ab388
identifier: 7fa1413a-97af-4fcc-9e5d-dae4c93ab388
measurementTechnique:
- name: behavioral technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
path: sub-Temp-pref-F16-B16-6dpf-01-unsorted-nac/sub-Temp-pref-F16-B16-6dpf-01-unsorted-nac_ses-20230720T143700_behavior.nwb
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: SpatialSeries
- schemaKey: PropertyValue
value: Position
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: CompassDirection
- schemaKey: PropertyValue
value: BehavioralTimeSeries
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P6DT52620S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: Temp_pref_F16_B16_6dpf_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-20T14:37:00-04:00'
- description: Metadata generated by DANDI cli
endDate: '2023-11-11T10:39:27.544381-05:00'
id: urn:uuid:19512a83-334f-4156-98e6-85953f843f15
name: Metadata generation
schemaKey: Activity
startDate: '2023-11-11T10:39:27.544381-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:43:22.070000-05:00'
contentSize: 8658340
contentUrl:
- https://api.dandiarchive.org/api/assets/7244cf20-96fd-4ea0-8485-ad81c40d0d34/download/
- https://dandiarchive.s3.amazonaws.com/blobs/ae9/c4e/ae9c4e76-5c66-4100-a3df-4fdc99bbb79d
dateModified: '2023-11-11T10:39:27.824732-05:00'
digest:
dandi:dandi-etag: d9906708ee05b0322b92f34b14e4b2b3-1
dandi:sha2-256: 264f3082b22dadf10e147dfbe5ccf930e36c0fd79b6afb5cc961b2dbff38fce9
encodingFormat: application/x-nwb
id: dandiasset:7244cf20-96fd-4ea0-8485-ad81c40d0d34
identifier: 7244cf20-96fd-4ea0-8485-ad81c40d0d34
measurementTechnique:
- name: behavioral technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
path: sub-Temp-pref-F16-B16-6dpf-04-unsorted-nac/sub-Temp-pref-F16-B16-6dpf-04-unsorted-nac_ses-20230720T161600_behavior.nwb
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: SpatialSeries
- schemaKey: PropertyValue
value: Position
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: CompassDirection
- schemaKey: PropertyValue
value: BehavioralTimeSeries
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P6DT58560S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: Temp_pref_F16_B16_6dpf_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-20T16:16:00-04:00'
- description: Metadata generated by DANDI cli
endDate: '2023-11-11T10:39:27.824732-05:00'
id: urn:uuid:9560a504-0859-45dc-a38c-fddfa4e0d46f
name: Metadata generation
schemaKey: Activity
startDate: '2023-11-11T10:39:27.824732-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:43:15.230000-05:00'
contentSize: 9142650
contentUrl:
- https://api.dandiarchive.org/api/assets/9eb9a8fa-ffab-4d9a-ba84-8c7dc18a9f83/download/
- https://dandiarchive.s3.amazonaws.com/blobs/ea5/230/ea52300b-862d-43ca-b834-54b0d704ae17
dateModified: '2023-11-11T10:39:27.924737-05:00'
digest:
dandi:dandi-etag: 1b06004c3bb20ca6ca536f51129630ea-1
dandi:sha2-256: cf263efa59cb260d62dc2105d622cec51b171a676e1ec8f00b927661dab24793
encodingFormat: application/x-nwb
id: dandiasset:9eb9a8fa-ffab-4d9a-ba84-8c7dc18a9f83
identifier: 9eb9a8fa-ffab-4d9a-ba84-8c7dc18a9f83
measurementTechnique:
- name: behavioral technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
path: sub-Temp-pref-F16-B16-6dpf-02-unsorted-nac/sub-Temp-pref-F16-B16-6dpf-02-unsorted-nac_ses-20230720T150900_behavior.nwb
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: SpatialSeries
- schemaKey: PropertyValue
value: Position
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: CompassDirection
- schemaKey: PropertyValue
value: BehavioralTimeSeries
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P6DT54540S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: Temp_pref_F16_B16_6dpf_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-20T15:09:00-04:00'
- description: Metadata generated by DANDI cli
endDate: '2023-11-11T10:39:27.924737-05:00'
id: urn:uuid:72df703f-4179-43aa-9b82-cc11a9c105f1
name: Metadata generation
schemaKey: Activity
startDate: '2023-11-11T10:39:27.914730-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:43:32.600000-05:00'
contentSize: 9052191
contentUrl:
- https://api.dandiarchive.org/api/assets/e471a444-f154-416c-9049-b0e45be487ed/download/
- https://dandiarchive.s3.amazonaws.com/blobs/ec0/932/ec09323c-62a4-4baa-86c7-d95cbd9cd7ca
dateModified: '2023-11-11T10:39:31.712191-05:00'
digest:
dandi:dandi-etag: 85fa536b82633a5c3ceebae635060fbc-1
dandi:sha2-256: bd5e995f4ede73f05a5c58bfd3356491cfb3a099d602372f9c0e1cc2a43dbc83
encodingFormat: application/x-nwb
id: dandiasset:e471a444-f154-416c-9049-b0e45be487ed
identifier: e471a444-f154-416c-9049-b0e45be487ed
measurementTechnique:
- name: behavioral technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
path: sub-Temp-pref-F16-B16-6dpf-07-unsorted-nac/sub-Temp-pref-F16-B16-6dpf-07-unsorted-nac_ses-20231025T113900_behavior.nwb
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: SpatialSeries
- schemaKey: PropertyValue
value: Position
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: CompassDirection
- schemaKey: PropertyValue
value: BehavioralTimeSeries
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P6DT41940S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: Temp_pref_F16_B16_6dpf_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-10-25T11:39:00-04:00'
- description: Metadata generated by DANDI cli
endDate: '2023-11-11T10:39:31.712191-05:00'
id: urn:uuid:413bed6a-fde0-4d11-9331-f2ac6f4f7174
name: Metadata generation
schemaKey: Activity
startDate: '2023-11-11T10:39:31.682538-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:43:29.010000-05:00'
contentSize: 8754239
contentUrl:
- https://api.dandiarchive.org/api/assets/38daf945-0551-4f7f-9795-6675cafcf85e/download/
- https://dandiarchive.s3.amazonaws.com/blobs/35b/ba0/35bba058-6c4a-4736-90c2-3d46b362dd01
dateModified: '2023-11-11T10:39:32.102253-05:00'
digest:
dandi:dandi-etag: 4e276c9a786e49def7812a0091ed98dc-1
dandi:sha2-256: ff0070f358ff5767429e57f5288457cbdb7da9a36aec0b6053cfb383e9db0d8c
encodingFormat: application/x-nwb
id: dandiasset:38daf945-0551-4f7f-9795-6675cafcf85e
identifier: 38daf945-0551-4f7f-9795-6675cafcf85e
measurementTechnique:
- name: behavioral technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
path: sub-Temp-pref-F16-B16-6dpf-06-unsorted-nac/sub-Temp-pref-F16-B16-6dpf-06-unsorted-nac_ses-20231025T110800_behavior.nwb
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: SpatialSeries
- schemaKey: PropertyValue
value: Position
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: CompassDirection
- schemaKey: PropertyValue
value: BehavioralTimeSeries
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P6DT40080S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: Temp_pref_F16_B16_6dpf_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-10-25T11:08:00-04:00'
- description: Metadata generated by DANDI cli
endDate: '2023-11-11T10:39:32.102253-05:00'
id: urn:uuid:6e824eda-8451-406f-a0a0-bcd04899c793
name: Metadata generation
schemaKey: Activity
startDate: '2023-11-11T10:39:32.061905-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:43:36.030000-05:00'
contentSize: 9068166
contentUrl:
- https://api.dandiarchive.org/api/assets/e7a2fb6d-924c-418e-af0e-4a3aa1f98607/download/
- https://dandiarchive.s3.amazonaws.com/blobs/684/eae/684eaed4-ef87-4d68-a7ee-fea1a755d805
dateModified: '2023-11-11T10:39:32.381489-05:00'
digest:
dandi:dandi-etag: c29d5c260da1e1c337baa6d6ed4f9714-1
dandi:sha2-256: b8dde5c8f60f34caa67a0ed14659c2d203241849d28ebcb18d4c7db5541606ee
encodingFormat: application/x-nwb
id: dandiasset:e7a2fb6d-924c-418e-af0e-4a3aa1f98607
identifier: e7a2fb6d-924c-418e-af0e-4a3aa1f98607
measurementTechnique:
- name: behavioral technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
path: sub-Temp-pref-F16-B16-6dpf-08-unsorted-nac/sub-Temp-pref-F16-B16-6dpf-08-unsorted-nac_ses-20231025T121400_behavior.nwb
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: SpatialSeries
- schemaKey: PropertyValue
value: Position
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: CompassDirection
- schemaKey: PropertyValue
value: BehavioralTimeSeries
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P6DT44040S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: Temp_pref_F16_B16_6dpf_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-10-25T12:14:00-04:00'
- description: Metadata generated by DANDI cli
endDate: '2023-11-11T10:39:32.381489-05:00'
id: urn:uuid:3a445d1a-23a3-4845-92d8-2fc6d6afda4c
name: Metadata generation
schemaKey: Activity
startDate: '2023-11-11T10:39:32.301978-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:43:39.580000-05:00'
contentSize: 8206084
contentUrl:
- https://api.dandiarchive.org/api/assets/9e4ea6ff-c1c1-47da-b1a6-fa501925c608/download/
- https://dandiarchive.s3.amazonaws.com/blobs/cbc/3d3/cbc3d3f4-33b7-4fb9-84f7-58ef1d69f9e0
dateModified: '2023-11-11T10:39:32.521558-05:00'
digest:
dandi:dandi-etag: 4414e74c7c154e9d21f1184a3f853990-1
dandi:sha2-256: f6fac71317404a33bfab95b6f04d2710222d3180561de9fbd51663401a1c2497
encodingFormat: application/x-nwb
id: dandiasset:9e4ea6ff-c1c1-47da-b1a6-fa501925c608
identifier: 9e4ea6ff-c1c1-47da-b1a6-fa501925c608
measurementTechnique:
- name: behavioral technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
path: sub-Temp-pref-F16-B16-6dpf-09-unsorted-nac/sub-Temp-pref-F16-B16-6dpf-09-unsorted-nac_ses-20231025T124900_behavior.nwb
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: SpatialSeries
- schemaKey: PropertyValue
value: Position
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: CompassDirection
- schemaKey: PropertyValue
value: BehavioralTimeSeries
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P6DT46140S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: Temp_pref_F16_B16_6dpf_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-10-25T12:49:00-04:00'
- description: Metadata generated by DANDI cli
endDate: '2023-11-11T10:39:32.521558-05:00'
id: urn:uuid:edd6dafc-868f-45a3-800a-146f2d2953d0
name: Metadata generation
schemaKey: Activity
startDate: '2023-11-11T10:39:32.521558-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:43:43-05:00'
contentSize: 9065151
contentUrl:
- https://api.dandiarchive.org/api/assets/ce352fba-5e7b-4ecd-8dbe-66486b091d71/download/
- https://dandiarchive.s3.amazonaws.com/blobs/aad/a15/aada15b3-6228-430f-b6d5-15c0d747b0b0
dateModified: '2023-11-11T10:39:32.776521-05:00'
digest:
dandi:dandi-etag: 2b7a81f4d87a33c3d122ae7b5ee3d907-1
dandi:sha2-256: 9c95b7cebd25b11e50d1e1207e4c7055a8028d0707e856f5b8c6d9f65b4ad7c2
encodingFormat: application/x-nwb
id: dandiasset:ce352fba-5e7b-4ecd-8dbe-66486b091d71
identifier: ce352fba-5e7b-4ecd-8dbe-66486b091d71
measurementTechnique:
- name: behavioral technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
path: sub-Temp-pref-F16-B16-6dpf-10-unsorted-nac/sub-Temp-pref-F16-B16-6dpf-10-unsorted-nac_ses-20231025T132000_behavior.nwb
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: SpatialSeries
- schemaKey: PropertyValue
value: Position
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: CompassDirection
- schemaKey: PropertyValue
value: BehavioralTimeSeries
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P6DT48000S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: Temp_pref_F16_B16_6dpf_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-10-25T13:20:00-04:00'
- description: Metadata generated by DANDI cli
endDate: '2023-11-11T10:39:32.776521-05:00'
id: urn:uuid:c638c0bd-9af5-4f0a-8c5f-81fc42ea4414
name: Metadata generation
schemaKey: Activity
startDate: '2023-11-11T10:39:32.736871-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:43:49.960000-05:00'
contentSize: 8294551
contentUrl:
- https://api.dandiarchive.org/api/assets/43d070e4-0914-4bae-927b-61c0b2f71302/download/
- https://dandiarchive.s3.amazonaws.com/blobs/218/327/218327c0-de59-47da-bf3e-68f06200a093
dateModified: '2023-11-11T10:39:34.586379-05:00'
digest:
dandi:dandi-etag: 0145b5117379f1643c92cfbfff85ed45-1
dandi:sha2-256: 9d23bd8dc0fc8ce56b15e63900869d0d96817ed40a42447ffa812cf0e10c5e51
encodingFormat: application/x-nwb
id: dandiasset:43d070e4-0914-4bae-927b-61c0b2f71302
identifier: 43d070e4-0914-4bae-927b-61c0b2f71302
measurementTechnique:
- name: behavioral technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
path: sub-Temp-pref-F16-B16-6dpf-12-unsorted-nac/sub-Temp-pref-F16-B16-6dpf-12-unsorted-nac_ses-20231025T142200_behavior.nwb
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: SpatialSeries
- schemaKey: PropertyValue
value: Position
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: CompassDirection
- schemaKey: PropertyValue
value: BehavioralTimeSeries
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P6DT51720S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: Temp_pref_F16_B16_6dpf_12_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-25T14:22:00-04:00'
- description: Metadata generated by DANDI cli
endDate: '2023-11-11T10:39:34.586379-05:00'
id: urn:uuid:181c1c14-56ea-4abb-aeb9-727209b8611f
name: Metadata generation
schemaKey: Activity
startDate: '2023-11-11T10:39:34.576300-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:43:46.540000-05:00'
contentSize: 8513669
contentUrl:
- https://api.dandiarchive.org/api/assets/43589d51-31a8-4533-9d16-fb74907780b7/download/
- https://dandiarchive.s3.amazonaws.com/blobs/d54/d01/d54d015a-cd23-4e49-b21e-8b0cd2b68ff7
dateModified: '2023-11-11T10:39:34.576300-05:00'
digest:
dandi:dandi-etag: f162e63049741753723f4c0af38abf64-1
dandi:sha2-256: 8c4b18fee3693869f07060c7ad226a12a4434cb4d3408a05de8c9f071c6537cb
encodingFormat: application/x-nwb
id: dandiasset:43589d51-31a8-4533-9d16-fb74907780b7
identifier: 43589d51-31a8-4533-9d16-fb74907780b7
measurementTechnique:
- name: behavioral technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
path: sub-Temp-pref-F16-B16-6dpf-11-unsorted-nac/sub-Temp-pref-F16-B16-6dpf-11-unsorted-nac_ses-20231025T135000_behavior.nwb
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: SpatialSeries
- schemaKey: PropertyValue
value: Position
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: CompassDirection
- schemaKey: PropertyValue
value: BehavioralTimeSeries
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P6DT49800S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: Temp_pref_F16_B16_6dpf_11_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-25T13:50:00-04:00'
- description: Metadata generated by DANDI cli
endDate: '2023-11-11T10:39:34.576300-05:00'
id: urn:uuid:1f6aa9fe-6d93-4d2b-b48e-ab81ce80c7af
name: Metadata generation
schemaKey: Activity
startDate: '2023-11-11T10:39:34.536377-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:43:53.470000-05:00'
contentSize: 8432287
contentUrl:
- https://api.dandiarchive.org/api/assets/474a712f-0a65-4e49-95a1-cec0d99c1abd/download/
- https://dandiarchive.s3.amazonaws.com/blobs/f20/88c/f2088c0d-9a70-4c86-b628-033a51cec4bd
dateModified: '2023-11-11T10:39:35.471963-05:00'
digest:
dandi:dandi-etag: 52e6597c0bb8620d2bd77199446d70f9-1
dandi:sha2-256: e93482a89fc2e32d1d28c39dbcd21ad9aa413e67f761159d20b2e52fbf769104
encodingFormat: application/x-nwb
id: dandiasset:474a712f-0a65-4e49-95a1-cec0d99c1abd
identifier: 474a712f-0a65-4e49-95a1-cec0d99c1abd
measurementTechnique:
- name: behavioral technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
path: sub-Temp-pref-F16-B16-6dpf-13-unsorted-nac/sub-Temp-pref-F16-B16-6dpf-13-unsorted-nac_ses-20231025T145300_behavior.nwb
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: SpatialSeries
- schemaKey: PropertyValue
value: Position
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: CompassDirection
- schemaKey: PropertyValue
value: BehavioralTimeSeries
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P6DT53580S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: Temp_pref_F16_B16_6dpf_13_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-25T14:53:00-04:00'
- description: Metadata generated by DANDI cli
endDate: '2023-11-11T10:39:35.471963-05:00'
id: urn:uuid:5c8b1809-5c17-4f2b-9e69-a6f6d1645a6b
name: Metadata generation
schemaKey: Activity
startDate: '2023-11-11T10:39:35.351751-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:02.440000-05:00'
contentSize: 8991476
contentUrl:
- https://api.dandiarchive.org/api/assets/920098f0-5c87-41d7-8531-74c441aa8724/download/
- https://dandiarchive.s3.amazonaws.com/blobs/266/681/26668177-924d-4dc2-9af7-d03f053818bb
dateModified: '2023-11-11T10:39:36.431183-05:00'
digest:
dandi:dandi-etag: 834b54dd1e55747ef791d1cbbfae298b-1
dandi:sha2-256: 592a47c6b35548839e21f313bf403206141d01ee391495f9d674e757c764a1bf
encodingFormat: application/x-nwb
id: dandiasset:920098f0-5c87-41d7-8531-74c441aa8724
identifier: 920098f0-5c87-41d7-8531-74c441aa8724
measurementTechnique:
- name: behavioral technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
path: sub-Temp-pref-F16-B16-6dpf-15-unsorted-nac/sub-Temp-pref-F16-B16-6dpf-15-unsorted-nac_ses-20231025T165000_behavior.nwb
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: SpatialSeries
- schemaKey: PropertyValue
value: Position
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: CompassDirection
- schemaKey: PropertyValue
value: BehavioralTimeSeries
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P6DT60600S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: Temp_pref_F16_B16_6dpf_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-25T16:50:00-04:00'
- description: Metadata generated by DANDI cli
endDate: '2023-11-11T10:39:36.431183-05:00'
id: urn:uuid:78ac737a-39e9-4578-9b9b-20115af8951f
name: Metadata generation
schemaKey: Activity
startDate: '2023-11-11T10:39:36.431183-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:43:58.920000-05:00'
contentSize: 16298561
contentUrl:
- https://api.dandiarchive.org/api/assets/745d5d0d-4db6-4925-8aa3-36b9b8ae31b5/download/
- https://dandiarchive.s3.amazonaws.com/blobs/190/d65/190d6582-e9d2-4552-9917-66107d276e82
dateModified: '2023-11-11T10:39:35.831210-05:00'
digest:
dandi:dandi-etag: 57a2f1c8e31c496409e58d6afb16dde6-1
dandi:sha2-256: ea8675e8ea8ad39351534781bd57f366812f3ff47be52db2adbcf55d7d530cd3
encodingFormat: application/x-nwb
id: dandiasset:745d5d0d-4db6-4925-8aa3-36b9b8ae31b5
identifier: 745d5d0d-4db6-4925-8aa3-36b9b8ae31b5
measurementTechnique:
- name: behavioral technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
path: sub-Temp-pref-F16-B16-6dpf-14-long-unsorted-nac/sub-Temp-pref-F16-B16-6dpf-14-long-unsorted-nac_ses-20231025T152800_behavior.nwb
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: SpatialSeries
- schemaKey: PropertyValue
value: Position
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: CompassDirection
- schemaKey: PropertyValue
value: BehavioralTimeSeries
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P6DT55680S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: Temp_pref_F16_B16_6dpf_14_long_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-25T15:28:00-04:00'
- description: Metadata generated by DANDI cli
endDate: '2023-11-11T10:39:35.831210-05:00'
id: urn:uuid:a5fb0a12-2346-434c-bbb5-ee9f4897131d
name: Metadata generation
schemaKey: Activity
startDate: '2023-11-11T10:39:35.821555-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