Define some metadata structure #268
aborgna-q
started this conversation in
Specification
Replies: 1 comment 4 replies
-
Agreed. Do we need to impose any more structure than |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Currently in the implementation the metadata for a node is just a
serde_yaml::Value
. This is really prone to cause collisions between (internal and external) users trying to store data there.The spec doesn't define any structure for it, but it would be beneficial to at least require a HashMap<String, Value>.
Update: #661 Made the metadata always a HashMap, but the string keys do not have any structure yet.
Beta Was this translation helpful? Give feedback.
All reactions