Skip to content

Commit

Permalink
add 'batch_id' as an optional field for EmmetMeta
Browse files Browse the repository at this point in the history
  • Loading branch information
tsmathis committed Dec 18, 2024
1 parent 5f469c7 commit 237d2b7
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions emmet-core/emmet/core/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,11 @@ class EmmetMeta(BaseModel):
None, description="The run id associated with this data build."
)

batch_id: Optional[str] = Field(
None,
description="Identifier corresponding to the origin of this document's blessed task.",
)

database_version: Optional[str] = Field(
None, description="The database version for the built data."
)
Expand Down

0 comments on commit 237d2b7

Please sign in to comment.