In the tap-gong where a stream schema for calls_tr...
# singer-tap-development
n
In the tap-gong where a stream schema for calls_transcripts has property which is of type: array of json objects, what should i do if i want to change what i get from it and not include the whole information from it but just certain keys and values
i found out i need to overwrite the parse_response method, but whats exactly the response and how to get a certain property i need
a
Could you not parse out what you need downstream using a sql statement? That way you retain all the data in the tap (which is preferable when you're building a tap that will be used by lots of others).
n
its for custom use
a
So you are making your own variant? The
parse_response
method will receive the json response from the API (assuming rest), then you need to yield record dictionaries. So you might need to unpack the array of json objects and emit a custom record for each one