I am trying to upload a dataframe to bigquery which contains a column that is a list of users.
A typical value in the column would be ['USER1', 'USER2', 'USER3'].
No matter how much I try though when trying to specify the BQ schema, I am never able to manage to get it to understand it is an array of strings.
Here is an example of what I tried for some reference.
bq_schema = [
bigquery.SchemaField("reply_users", field_type='RECORD', fields=[bigquery.SchemaField("user", "STRING", mode="REPEATED")]),
]
I've tried and tried but I just cannot work out how to do this.
Any advice greatly appreciated.

