AttributeError: 'list' object has no attribute 'items'
So I'm getting this error for one of my API endpoints for my custom tap. Most endpoints come back as a list of dictionaries [["column_1_name": "column_1_value", "column_2_name": "column_2_value", etc...]], but this one comes back as a list of lists with the data as [["column_1_name", "column_2_name"],["column_1_value", "column_2_value"]]. Is that what may be causing this error? If so do I need to redeclare the
records_jsonpath
property for that particular stream?