Thanks !
I have an additional question. I wanted to store the file on a git server, I thought that textual format could be efficiently handled by git (storing only diffs). I guess that this basic approach will not work with JDL or BSON…
What should I do ?
git is not really made to store data, even in text format. But it’s probably ok as long as your data is small (irrespective of wether text or binary). If your data really only changes a little and it is essential that git takes advantage of storing diffs, then you could consider other text based formats such as JSON, YAML or XML, for which there are probably packages around.