From da2d004905409ab38c4de643a03c8a1386a926d4 Mon Sep 17 00:00:00 2001 From: Dan Birman Date: Tue, 25 Feb 2025 16:35:47 -0800 Subject: [PATCH] docs: improve docstrings on metadata --- src/aind_data_schema/core/metadata.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/aind_data_schema/core/metadata.py b/src/aind_data_schema/core/metadata.py index e2a478772..f983b77ca 100644 --- a/src/aind_data_schema/core/metadata.py +++ b/src/aind_data_schema/core/metadata.py @@ -91,13 +91,13 @@ class Metadata(DataCoreModel): ) created: AwareDatetimeWithDefault = Field( default_factory=lambda: datetime.now(tz=timezone.utc), - title="Created", - description="The utc date and time the data asset created.", + title="Asset creation data", + description="The utc date and time the data asset was created on the cloud", ) last_modified: AwareDatetimeWithDefault = Field( default_factory=lambda: datetime.now(tz=timezone.utc), title="Last Modified", - description="The utc date and time that the data asset was last modified.", + description="The utc date and time that the data asset metadata was last modified.", ) location: str = Field( ...,