Can we write select statement to get schema of an existing table in JSON format or can we write bigquery to
Select statement should generate the json format in the result set. (or in bigquery - how to Select existing table schema as JSON format)
example - [ { "name": "year", "type": "INTEGER", "mode": "NULLABLE" }, { "name": "month", "type": "INTEGER", "mode": "NULLABLE" }, { "name": "project_bytes", "type": "BYTES", "mode": "NULLABLE" }, { "name": "lang", "type": "STRING", "mode": "NULLABLE" } ]
