Skip to content

Commit 433e969

Browse files
committed
software as list #589
1 parent 434c967 commit 433e969

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/aind_data_schema/stimulus.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,12 +92,12 @@ class BehaviorStimulation(AindModel):
9292
)
9393
behavior_name: str = Field(..., title="Behavior name")
9494
session_number: int = Field(..., title="Session number")
95-
behavior_software: str = Field(
95+
behavior_software: List[str] = Field(
9696
...,
9797
title="Behavior software",
9898
description="The software used to control the behavior (e.g. Bonsai)",
9999
)
100-
behavior_software_version: str = Field(..., title="Behavior software version")
100+
behavior_software_version: List[str] = Field(..., title="Behavior software version")
101101
behavior_script: str = Field(
102102
...,
103103
title="Behavior script",

0 commit comments

Comments
 (0)