hey guys, let's say im using schema files (like ca...
# singer-tap-development
j
hey guys, let's say im using schema files (like campaigns.json) and i want to add a transformation move (for example, remove any property that is of type object) where would i fire that off? was thinking in
streams.py
but it seems that it's only using the path to the schema file, and not opening it up there... so, let's say i want to do something like
field_names = [field for field in schema['properties'].keys() if schema['properties'][field]['type'][0] != 'object']