https://cloud.google.com/bigquery/docs/datasets
michael@cloudshell:~/bquery (biometric-ol)$ bq --location us-central1 mk --dataset biometric-ol:dataset1
Dataset 'biometric-ol:dataset1' successfully created.
https://cloud.google.com/bigquery/docs/tables
michael@cloudshell:~/bquery (biometric-ol)$ bq mk --table biometric-ol:dataset1.table1 sample-schema.json
Table 'biometric-ol:dataset1.table1' successfully created.
michael@cloudshell:~/bquery (biometric-ol)$ bq show --schema --format=prettyjson biometric-ol:dataset1.table1
[
{
"description": "quarter",
"mode": "REQUIRED",
"name": "qtr",
"type": "STRING"
},
michael@cloudshell:~/bquery (biometric-ol)$ cat sample-schema.json
[
{
"name": "qtr",
"type": "STRING",
"mode": "REQUIRED",
"description": "quarter"
},