I am trying to load a json array into a bigquery table. The structure of the data is as stated below :
[{"image":"testimage1","component":"component1"},{"image":"testimage2","component":"component2"}]
Each json record corresponds to 1 row in BigQuery. The columns in BigQuery are : image and component. When I am trying to ingest the data it fails with a parsing error. If I try to change the structure to this , it works
{"image":"testimage1","component":"component1"}{"image":"testimage2","component":"component2"}
I am trying to ingest as NEWLINE_DELIMITED_JSON
Is there any way I can make the first json structure get ingested into Bigquery?
