steven_wang
06/17/2024, 4:07 PMtype to entity_type . Motivation for this is it seems like when running discovery of the schema the field called type  throws an error perhaps because type is already a reserved word in the schema spec. Did some testing and found that if I manually change the field name in the source (s3 jsonl) the tap runs as expected.Reuben (Matatika)
06/17/2024, 4:12 PMstream_maps:
  entity_type:
    __source__: type
  type: null
Unsure if defined order is important here.Reuben (Matatika)
06/17/2024, 4:15 PMstream_maps:
  type:
    __alias__: entity_type
https://sdk.meltano.com/en/latest/stream_maps.html#aliasing-a-stream-using-aliassteven_wang
06/17/2024, 4:27 PMstream_maps:
  my_stream:
    type:
      __alias__: entity_type
But didn't seem to rename that columnReuben (Matatika)
06/17/2024, 4:35 PMstream_maps:
  my_stream:
    entity_type: type
    type: null