I haven't seen any docs on this, so I'm assuming this isn't in place — but is there an established protocol for attaching arbitrary metadata to files? Does ipfs add support any metadata options?
The text was updated successfully, but these errors were encountered:
IPFS stores objects, where files are a data structure on top. (Easy misconception, given the project name 😄). Take a look at ipfs object --help for some commands that assist in building custom object structures using IPFS merkle dag objects.
Soon we'll be using a format called IPLD, which will make it easier to describe arbitrary data structures on top of IPFS.
Right now it only has fields for a mime type and size, but i think adding arbitrary key/value pairs to that is probably something good to do in the short term (before IPLD is done).
We should also work on exposing that metadata object through ipfs add and friends.
micahredding commentedMar 9, 2016
I haven't seen any docs on this, so I'm assuming this isn't in place — but is there an established protocol for attaching arbitrary metadata to files? Does
ipfs addsupport any metadata options?The text was updated successfully, but these errors were encountered: