I have a JSON file from waze that I am trying to read.
I am using the JSON (JavaScript Object Notation) reader.
There are three schema; alerts, irregularities and jams
I can read alerts okay with this query
json["alerts"]
Flatten Nested JSON values into Attributes = Yes
Read Entire Feature as JSON Fragment = No
which reads 433 alerts, each with a location.x and location.y which allows me to built a point object (Vertex) for each feature.
But I am struggling with the irregularities and jams.
The irregularities have a line object which obviously does not convert into two neat columns.
How do I read the line object?
I have attached the json file here