nicholas_van_kuren
09/27/2023, 4:53 PMtap-spreadsheets-anywhere to read from csv files that do not have headers. I am successfully able to read the files, but can see that the tap is just using the first row of data as the header/key names. How can I supply the headers from the configuration? I have tried schema and schema-override, but these do not seem to have an impact.edgar_ramirez_mondragon
09/27/2023, 11:19 PMfield_names option:
field_names: (optional) An array holding the names of the columns in the targeted files. If not supplied, the first row of each file must hold the desired values.
nicholas_van_kuren
09/28/2023, 1:02 PM