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 3df0601 commit 5a7cc9dCopy full SHA for 5a7cc9d
src/aind_data_schema/session.py
@@ -92,6 +92,7 @@ class FieldOfView(AindModel):
92
fov_scale_factor_unit: str = Field("um/pixel", title="FOV scale factor unit")
93
frame_rate: Decimal = Field(..., title="Frame rate (Hz)")
94
frame_rate_unit: FrequencyUnit = Field(FrequencyUnit.HZ, title="Frame rate unit")
95
+ coupled_fov_index: Optional[int] = Field(None, title="Coupled FOV", description="Coupled planes for multiscope")
96
97
98
class StackChannel(Channel):
@@ -246,7 +247,7 @@ class Session(AindCoreModel):
246
247
"""Description of a physiology and/or behavior session"""
248
249
schema_version: str = Field(
- "0.0.1",
250
+ "0.0.2",
251
description="schema version",
252
title="Schema Version",
253
const=True,
0 commit comments