My use-case is:
1) Have API credentials
2) Use UpdateAttribute to update (1) schema, (2) s3 bucket/location (my list of reports)
3) Query API endpoint for report
4) API endpoint paginates and gets more records
5) Call MergeRecord
6) Save to s3
Since 3, 4, 5, 6 are all the same, I'm re-using the processors like below (screenshot). My problem is (5) MergeRecord will try to merge different schemas together, which is obviously a problem.
How can I restructure this? I'd like to re-use processors as much as possible, but still be able to add more schemas as my needs evolve.