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 e894069 commit 0f081e4Copy full SHA for 0f081e4
src/aind_data_schema/core/metadata.py
@@ -78,7 +78,7 @@ class Metadata(AindCoreModel):
78
metadata_status: MetadataStatus = Field(
79
default=MetadataStatus.UNKNOWN, title=" Metadata Status", description="The status of the metadata."
80
)
81
- external_links: List[Dict[ExternalPlatforms, str]] = Field(
+ external_links: Dict[ExternalPlatforms, List[str]] = Field(
82
default=[], title="External Links", description="Links to the data asset on different platforms."
83
84
# We can make the AindCoreModel fields optional for now and do more
0 commit comments