I'm trying to intentionally insert one dummy record with full schema data into bigquery GA360 table.
One way I figured it out is to "INSERT" all fields:
INSERT INTO <project.dataset.table> (visitorId,visitStartTime,date,totals,customDimension.......)
VALUES ( 1234, 12345, 20200101, ( 1,2,3,4,5,6,7,8,9,10,11,12,13),[(1,"asd"),....].....)
I gave up when I encountered "hits" field which has complicated nested structure.
Is there any other way (ex. something I can imagine is to code with client API using table schema JSON file) or anyone who has succeed with DDL?