As to Google documents I can use the schema stored in a JSON file in command line as the following:
bq --location=location load \
--source_format=format \
project_id:dataset.table \
path_to_data_file \
path_to_schema_file
where path_to_schema_file is the path to the file that contains the schema
is there a way to do this in python and pass the schema from the json file to the LoadJobConfig().schema ? or I should read the schema manually and transform it into bigquery.TableSchema() object?