Dynamic JSON Response
I use Connect REST to retrieve data from an external document processing service during case processing. The service returns a list of matches that I need to map to fields (properties on my case). So far so good - I can achieve all of this with data page, a response data transform, and a data model.
However, here is the catch. The JSON will change based on my use case. Here, I'm extracting IDs, so I will get matches such as "DateOfBirth", "DocumentType", "FirstName". In another use case, I might process receipts, so I would get invoice dates, total amount, and so on.
How can I build this in a way so it's reusable and I don't have to re-create properties and data transforms for every single use case?

