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 c007bcd commit 57402d2Copy full SHA for 57402d2
1 file changed
src/aind_metadata_viz/contributions/models.py
@@ -83,6 +83,10 @@ class AuthorContribution(BaseModel):
83
default=None,
84
description="Optional date when the author started working on the project",
85
)
86
+ end_date: Optional[date] = Field(
87
+ default=None,
88
+ description="Optional date when the author stopped working on the project",
89
+ )
90
credit_levels: List[RoleContribution] = Field(default_factory=list)
91
section_levels: List[SectionContribution] = Field(default_factory=list)
92
from_asset: bool = Field(
0 commit comments