As an example imagine I generate a UUID/GUID for an ID in a json file.
{
"25d01302-2558-4c44-bf9d-385b1cc51377": ["somevalues"]
}
is it ok or generally frowned upon to do something like
{
"25d01302-2558-4c44-bf9d-385b1cc51377": ["somevalue"],
"25d013o3-2558-4c44-bf9d-385b1cc51377": ["someothervalue"]
}
the second being a manually edited uuid/guid
This is something I come across recently and I can't tell if this is something you should avoid (just to be safe) or it is something that doesn't really matter either way?