metadata-digger
metadata-digger copied to clipboard
Tag names are not converted according to specified convention for JSON
When json output is specified in configuration, tag names are not converted. It's because this process in ColumnNamesConverter class is based on DataFrame schema but in case of JSON output format we have embedded structure. Things to do:
- Retrieve fields of Map type
- Iterate over the fields and change keys of the Map using
withColumnfunction or any other similar.