We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 434c967 commit 433e969Copy full SHA for 433e969
src/aind_data_schema/stimulus.py
@@ -92,12 +92,12 @@ class BehaviorStimulation(AindModel):
92
)
93
behavior_name: str = Field(..., title="Behavior name")
94
session_number: int = Field(..., title="Session number")
95
- behavior_software: str = Field(
+ behavior_software: List[str] = Field(
96
...,
97
title="Behavior software",
98
description="The software used to control the behavior (e.g. Bonsai)",
99
100
- behavior_software_version: str = Field(..., title="Behavior software version")
+ behavior_software_version: List[str] = Field(..., title="Behavior software version")
101
behavior_script: str = Field(
102
103
title="Behavior script",
0 commit comments