There are at least a couple issues with how scores are serialized to JSON that make it harder for other programs to import
- enums are serialized as integers (0,1,2 etc) which are mysterious without looking at the C++ source
- bit flags (e.g. for
Position::SimpleProperty are serialized as a string of 0s and 1s that is awkward to figure out and deal with
There may be other issues, so we should review the JSON contents to look for anything odd