Hi there, I am trying to order by "start_time" a JSON object with the following structure:
{
"Events": [
{
"id": "1",
"start_time": "2023-11-26T03:00:00Z"
},
{
"id": "2",
"start_time": "2023-11-26T02:00:00Z"
}
]
}
I've tried doing it with PA Desktop's Javascript scripting but cannot wrap my head around it (cannot use basic JS syntax like "const", cannot return the entire array with WScript.echo() , ...)
Any idea of how to do this? I am fine with either PA Desktop or PA Cloud solutions, whatever is more performant and easy to implement.
Cheers.