According to the BigQuery schema documentation BigQuery supports the following modes for columns: Nullable, Required, and Repeated. Is there any way to make field (with type Record) Required and Repeated at the same time?
At the moment I have:
insert into test (id) values('333')


NOT NULLannotation for them. If the question is how to enforce that arrays have at least one element, this is not possible currently. - Elliott Brossard