I have exported data from JIRA to Bigquery so that I can do customize report and analytics via bigquery. I have a problem with one of the column in bigquery table where i see changelog_histories column have data in nested Json format. I will not able to achieve my goal until I extract data from the nested JSON.
Data extracted to Bigquery JSON from Changelog.histories column
To start with I tried the following query
SELECT key, changelog_histories, JSON_EXTRACT (changelog_histories,'$.x[0].author.accountType') as output FROM
[Project.Table]``
but it returned null Can someone help me here ?