Is it possible to define a table schema with field that has multiple data types on it? For example:
BIGQUERY TABLE SCHEMA
schema:
[{
name: 'field1',
type: 'string',
},
{
name: 'field2',
type: 'string or bool',
}]
Can I have a field like field2 in the example above which can have 2 datatype "String or Boolean".