Skip to content

Commit

Permalink
feat: add filter to LightAssembly
Browse files Browse the repository at this point in the history
  • Loading branch information
dbirman committed Jan 23, 2025
1 parent 7900187 commit acd04de
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/aind_data_schema/components/devices.py
Original file line number Diff line number Diff line change
Expand Up @@ -570,6 +570,9 @@ class LightAssembly(DataModel):
light: Annotated[Union[Laser, LightEmittingDiode, Lamp], Field(discriminator="device_type")]
lens: Lens = Field(..., title="Lens")

# optional fields
filter: Optional[Filter] = Field(default=None, title="Filter")


class ProbePort(DataModel):
"""Port for a probe connection"""
Expand Down

0 comments on commit acd04de

Please sign in to comment.