I'm using `tap-s3-csv` and I want to change the sc...
# troubleshooting
b
I'm using
tap-s3-csv
and I want to change the schema. I got some errors when the tap try to assume the data type. I'm writing the schema like https://meltano.com/docs/plugins.html#extractors explain.
Copy code
schema:
      invtrcee:
        properties:
         Adj Vaciar Tipo de Inventario:
         type: [string, null]
         AM:
         type: [string, null]
But when I run
meltano invoke --dump=catalog tap-s3-csv
it is not overwrite. In the thread is catalog that this command shows. It is possible to change the header name with schema extra?
I noted that the schema is written but it not overwrite.
Autosolved: but for documentation, for anyone else having issues configurating it. If schema was writing I was in the correct path I only have to fix the
meltano.yml
Only use the
tap_stream_id
and the name of the properties directly and is overwrite. A pending is to change the name of the header or add one if the file dont have.
Copy code
schema:
      invtrcee:
        Adj Vaciar Tipo de Inventario:
          type: [string, null]
        AM:
          type: [string, null]