I am building an array (i think) to be parsed later and i'm questioning the structure that I've used, specifically, how i'm separating 'entry1' from 'entry2'
This is the format i'm looking to achieve in the "ROLLINGUPDATE" field
[{"Date":"SOMEDATE"},{"Time":"SOMETIME"},{"By":"SomePerson"},{"Update":"UPDATES go here"}]
[{"Date":"SOMEDATE"},{"Time":"SOMETIME"},{"By":"SomePerson"},{"Update":"UPDATES go here"}]
[{"Date":"SOMEDATE"},{"Time":"SOMETIME"},{"By":"SomePerson"},{"Update":"UPDATES go here"}]
So i currently have
and if conditions match, i would append to that variable with the contents of the rolling update field
Which currently gives me
[{"Date":"10-Mar-2020"},{"Time":"03:32:57"},{"By":"TestPerson"},{"Update":"First Update"}],
[{"Date":"10-Mar-2020"},{"Time":"03:32:49"},{"By":"TestPerson"},{"Update":"First Update"}],
[{"Date":"10-Mar-2020"},{"Time":"03:32:39"},{"By":"TestPerson"},{"Update":"First Update"}],
[{"Date":"10-Mar-2020"},{"Time":"03:28:30"},{"By":"TestPerson"},{"Update":"First Update"}],
[{"Date":"10-Mar-2020"},{"Time":"03:28:23"},{"By":"TestPerson"},{"Update":"First Update"}],
[{"Date":"10-Mar-2020"},{"Time":"03:28:17"},{"By":"TestPerson"},{"Update":"First Update"}],
Is my format correct? Specifically i'm wondering about the comma at the end of each line - i'm just not sure if that is appropriate
FYI, if it helps, this is my parsing format