Skip to content

Commit fe14ad0

Browse files
committed
Update data_description.py
1 parent dbbe240 commit fe14ad0

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/aind_data_schema/data_description.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -451,14 +451,14 @@ class AnalysisDescription(DataDescription):
451451
data_level: DataLevel = Field(
452452
DataLevel.DERIVED, description="Level of processing that data has undergone", title="Data Level", const=True
453453
)
454-
project_name = str = Field(
455-
None,
454+
project_name: str = Field(
455+
...,
456456
regex=DataRegex.NO_SPECIAL_CHARS.value,
457-
description="Name of the project the analysis belongs to"
457+
description="Name of the project the analysis belongs to",
458458
title="Project name"
459459
)
460460
analysis_name: str = Field(
461-
None,
461+
...,
462462
regex=DataRegex.NO_SPECIAL_CHARS.value,
463463
description="Name of the analysis performed",
464464
title="Analysis name"

0 commit comments

Comments
 (0)