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 50ad955 commit 9342d01Copy full SHA for 9342d01
src/aind_data_schema/components/devices.py
@@ -772,6 +772,14 @@ class Treadmill(MousePlatform):
772
width_unit: SizeUnit = Field(default=SizeUnit.CM, title="Width unit")
773
774
775
+class Arena(MousePlatform):
776
+ """Description of a rectangular arena"""
777
+
778
+ device_type: Literal["Arena"] = "Arena"
779
+ size: Size3d = Field(..., title="3D Size")
780
+ objects_in_arena: List[Device] = Field(default=[], title="Objects in arena")
781
782
783
class Monitor(Device):
784
"""Description of visual display for visual stimuli"""
785
0 commit comments