AllenNeuralDynamics/aind-data-schema

Change `Metadata.external_links` from list of dicts to dict of lists

Closed this issue · 0 comments

Currently, Metadata.external_links takes in List[Dict[Platform, str]], which forces a user to sift through each dict to fin dthe platform they are looking for. Additionally, it is unclear in what situation a separate dict would be necessary for storing relevant info.

Proposing a change to take in Dict[Platform, List[str]]